.elementor-3072 .elementor-element.elementor-element-29e2974{--display:flex;}@media(min-width:768px){.elementor-3072 .elementor-element.elementor-element-29e2974{--content-width:1065px;}}/* Start custom CSS for shortcode, class: .elementor-element-d5ef0c1 *//* Last Date Tracker - Main Container */
.last-date-tracker {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header Styles */
.tracker-header {
    text-align: center;
    margin-bottom: 30px;
}
.tracker-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}
.tracker-header p {
    color: #000000;
    font-size: 16px;
}

/* Copy Buttons Container */
.copy-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Button Styles */
.copy-today-btn,
.copy-selected-btn,
.select-date-btn,
.remove-date-btn {
    background: #0019FF;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.copy-today-btn:hover,
.copy-selected-btn:not(:disabled):hover,
.select-date-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-selected-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    opacity: 0.7;
}

.select-date-btn {
    background: #4a5568;
    margin-left: 10px;
}

/* Selected Dates Section */
.selected-dates-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    padding: 20px;
    margin-bottom: 20px;
    display: none;
}
.selected-dates-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #2d3748;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.selected-dates-section h3 span {
    color: #0019FF;
    font-weight: 600;
}

.selected-dates-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selected-date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}
.selected-date-item:hover {
    background: #ebf8ff;
    border-color: #90cdf4;
}

.selected-date-label {
    font-weight: 500;
    font-size: 14px;
    color: #2d3748;
}

.selected-date-count {
    background: #0019FF;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

.remove-date-btn {
    background: #e53e3e;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: 8px;
}
.remove-date-btn:hover {
    background: #c53030;
}

/* Calendar Day Selection Styles */
.calendar-day.selected {
    background: #ebf8ff;
    border: 2px solid #90cdf4;
    box-shadow: inset 0 0 0 2px white;
}

.calendar-day.selected-temp {
    background: #fff5f5;
    border: 2px solid #fed7d7;
}

/* Date Applications Header */
.date-applications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}
.date-applications-header h3 {
    margin: 0;
    flex-grow: 1;
}

/* Calendar Section */
.calendar-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.calendar-container {
    flex: 1;
    min-width: 250px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0019FF;
    color: white;
}
.calendar-title {
    font-size: 18px;
    font-weight: 600;
}
.calendar-nav button {
    background: transparent;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 2px;
    font-size: 14px;
    transition: background 0.2s;
}
.calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
}
.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 10px 5px;
    background: #f7fafc;
    font-size: 13px;
    color: #4a5568;
}
.calendar-day {
    min-height: 5px;
    padding: 5px;
    background: white;
    position: relative;
    border: 1px solid #e2e8f0;
}
.calendar-day.empty {
    background: #f8fafc;
}
.calendar-day.today {
    background: #ebf8ff;
    border: 1px solid #90cdf4;
}
.calendar-day.has-applications {
    background: #fff5f5;
    cursor: pointer;
}
.calendar-day-number {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 2px;
    color: #4a5568;
}
.calendar-day-appcount {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #0019FF;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* Applications Panel */
.date-applications {
    flex: 1;
    min-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    padding: 20px;
}
.date-applications h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #2d3748;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}
.date-applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.date-applications-list li {
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
}
.date-applications-list li:last-child {
    border-bottom: none;
}
.date-applications-list a {
    color: #0019FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.date-applications-list a:hover {
    color: #4338ca;
    text-decoration: underline;
}
.date-applications-list .last-date {
    display: block;
    font-size: 12px;
    color: #ff0000;
    margin-top: 2px;
}
.no-applications {
    color: #a0aec0;
    font-style: italic;
    font-size: 14px;
}

/* Month Groups - 2×2 Layout */
.month-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin: 30px 0;
}
.month-group {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.month-title {
    background: #0019FF;
    color: white;
    margin: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
}
.month-list {
    flex-grow: 1;
    padding: 15px;
    margin: 0;
    overflow-y: auto;
    max-height: 400px;
}
.month-list li {
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
    list-style: none;
}
.month-list li:last-child {
    border-bottom: none;
}
.month-list a {
    color: #0019FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.month-list a:hover {
    color: #0019FF;
}
.month-list .last-date {
    display: block;
    font-size: 12px;
    color: #ff0000;
    margin-top: 2px;
}
.copy-btn {
    display: block;
    width: calc(100% - 100px);
    margin: 10px auto 15px;
    background: #0019FF;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}
.copy-btn:hover {
    background: #4338ca;
}
.empty-month {
    color: #a0aec0;
    font-style: italic;
    padding: 15px;
    font-size: 14px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .calendar-section {
        flex-direction: column;
        gap: 15px;
    }
    .calendar-container,
    .date-applications {
        min-width: 100%;
        max-width: 100%;
    }
    .calendar-day {
        min-height: 40px;
        padding: 8px 5px;
    }
    .calendar-day-number {
        font-size: 10px;
    }
    .calendar-day-appcount {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    .tracker-header h1 {
        font-size: 22px;
    }
    .tracker-header p {
        font-size: 14px;
    }
    .date-applications h3 {
        font-size: 16px;
    }
    .date-applications-list li {
        font-size: 13px;
    }
    .month-container {
        grid-template-columns: 1fr;
    }
    .month-title {
        font-size: 15px;
        padding: 10px 14px;
    }
    .month-list li {
        font-size: 13px;
    }
    .month-list {
        max-height: none;
    }
    .copy-btn {
        font-size: 12px;
        padding: 6px;
    }
    .copy-buttons {
        flex-direction: column;
        align-items: center;
    }
    .copy-today-btn,
    .copy-selected-btn,
    .select-date-btn {
        width: 100%;
        max-width: 250px;
        font-size: 13px;
        padding: 8px;
    }
    .date-applications-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .select-date-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    .selected-date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px;
    }
    .remove-date-btn {
        align-self: flex-end;
    }
}/* End custom CSS */