/* Active Plan Display Styles */

body {
    background-color: #17131b;
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.yrt-active-plan-container {
    font-family: 'Rajdhani', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #17131b;
    color: #f1ebe7;
}

/* Header Styles */
.yrt-active-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f1ebe7;
    border-radius: 8px;
    border: 1px solid #d0ee88;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #17131b;
}

.yrt-active-plan-header h1 {
    margin: 0;
    color: #16361c;
    font-family: 'League Spartan', 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 24px;
}

.yrt-active-plan-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.yrt-edit-plan-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d0ee88;
    color: #17131b;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.yrt-edit-plan-btn:hover {
    background-color: #16361c;
    text-decoration: none;
    color: #f1ebe7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.yrt-back-to-dashboard {
    display: inline-block;
    padding: 10px 20px;
    background-color: #16361c;
    color: #f1ebe7;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.yrt-back-to-dashboard:hover {
    background-color: #d0ee88;
    text-decoration: none;
    color: #17131b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Week Navigation */
.yrt-week-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f1ebe7;
    border-radius: 8px;
    border: 1px solid #d0ee88;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #17131b;
}

.yrt-nav-btn {
    padding: 10px 20px;
    background-color: #d0ee88;
    color: #17131b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.yrt-nav-btn:hover:not(:disabled) {
    background-color: #16361c;
    color: #f1ebe7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.yrt-nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.yrt-week-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yrt-week-selector label {
    font-weight: bold;
    color: #333;
}

.yrt-week-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Week Display */
.yrt-week-display {
    background-color: #f1ebe7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.yrt-week-container {
    padding: 0;
}

.yrt-week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #17131b;
    background-color: #d0ee88;
}

.yrt-week-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yrt-week-header h2 {
    margin: 0;
    font-family: 'League Spartan', 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 18px;
}

.yrt-week-type {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 12px;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yrt-week-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.yrt-week-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 80px;
}

.yrt-progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* Override any animations or effects from other CSS files */
.yrt-week-progress .yrt-progress-fill {
    animation: none !important;
    box-shadow: none !important;
    transition: width 0.3s ease !important;
}

.yrt-week-progress .yrt-progress-fill::after {
    display: none !important;
    content: none !important;
}

.yrt-week-progress .yrt-progress-fill::before {
    display: none !important;
    content: none !important;
}

.yrt-progress-fill {
    height: 100%;
    background-color: #d0ee88;
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    animation: none !important;
    box-shadow: none !important;
}

.yrt-progress-fill::after {
    display: none !important;
}

.yrt-progress-text {
    font-size: 12px;
    font-weight: bold;
    color: #16361c;
    text-align: center;
    min-width: 40px;
}

.yrt-week-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.yrt-week-total-label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yrt-week-total-distance {
    font-size: 16px;
    font-weight: 800;
    color: #16361c;
}

/* Week type specific styling */
.yrt-week-regular .yrt-week-header {
    background-color: #d0ee88;
    color: #17131b;
}

.yrt-week-recovery .yrt-week-header {
    background-color: #16361c;
    color: white;
}

.yrt-week-taper .yrt-week-header {
    background-color: #c2b257;
    color: white;
}

.yrt-week-race .yrt-week-header {
    background-color: #c91923;
    color: white;
}

/* Week Grid */
.yrt-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e0e0e0;
}

.yrt-day-cell {
    background-color: #f1ebe7;
    padding: 10px;
    min-height: auto;
    height: auto;
    display: block;
    color: #17131b;
}

.yrt-day-header {
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yrt-workout {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 12px;
    text-align: left;
    display: block;
    height: auto;
    min-height: auto;
    transition: all 0.2s ease;
    position: relative;
}

.yrt-workout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.yrt-workout-title {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.yrt-workout-distance {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #16361c;
}

.yrt-workout-pace {
    font-size: 13px;
    font-weight: 600;
    color: #16361c;
    margin-bottom: 4px;
}

.yrt-workout-hr {
    font-size: 10px;
    color: #c91923;
    margin-bottom: 4px;
    font-weight: 600;
}

.yrt-workout-description {
    font-size: 10px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
    font-style: italic;
}

.yrt-workout-notes {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.yrt-notes-label {
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.yrt-notes-content {
    font-size: 10px;
    color: #333;
    line-height: 1.3;
    font-style: italic;
}

.yrt-notes-textarea {
    width: 100%;
    min-height: 40px;
    padding: 4px 6px;
    font-size: 10px;
    line-height: 1.3;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    background-color: rgba(255,255,255,0.8);
    color: #333;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
}

.yrt-notes-textarea:focus {
    outline: none;
    border-color: #d0ee88;
    box-shadow: 0 0 0 2px rgba(208, 238, 136, 0.3);
    background-color: white;
}

.yrt-notes-textarea::placeholder {
    color: #999;
    font-style: italic;
}

.yrt-notes-textarea.saving {
    border-color: #ff9800;
    background-color: #fff8e1;
}

.yrt-notes-textarea.saved {
    border-color: #4caf50;
    background-color: #e8f5e8;
}

.yrt-notes-textarea.error {
    border-color: #f44336;
    background-color: #ffebee;
}

/* Workout Status Buttons */
.yrt-workout-status {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.yrt-status-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.yrt-status-btn {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: rgba(255,255,255,0.8);
    color: #666;
    min-width: 50px;
}

.yrt-status-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.yrt-done-btn {
    color: #28a745;
    border-color: #28a745;
}

.yrt-done-btn:hover {
    background-color: #28a745;
    color: white;
}

.yrt-done-btn.active {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.yrt-missed-btn {
    color: #dc3545;
    border-color: #dc3545;
}

.yrt-missed-btn:hover {
    background-color: #dc3545;
    color: white;
}

.yrt-missed-btn.active {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.yrt-status-btn.loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
    background-color: #16361c !important;
    color: #d0ee88 !important;
    font-weight: bold;
    cursor: not-allowed;
}

.yrt-status-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid transparent;
    border-top: 2px solid #d0ee88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.yrt-status-btn.saving {
    opacity: 0.6;
    cursor: not-allowed;
}

.yrt-status-btn.saved {
    animation: pulse 0.5s ease-in-out;
}

.yrt-status-btn.error {
    border-color: #f44336;
    background-color: #ffebee;
    color: #f44336;
}

/* Actual Distance Input Styles */
.yrt-actual-distance-section {
    margin-top: 6px;
    padding-top: 6px;
}

.yrt-actual-distance-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.yrt-actual-distance-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 3px;
    width: 100%;
}

.yrt-actual-distance-input {
    flex: 1;
    min-width: 60px;
    max-width: 80px;
    padding: 2px 6px;
    font-size: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    font-family: inherit;
    transition: all 0.2s ease;
    text-align: center;
}

.yrt-actual-distance-input:focus {
    outline: none;
    border-color: #d0ee88;
    box-shadow: 0 0 0 2px rgba(208, 238, 136, 0.3);
    background-color: white;
}

.yrt-actual-distance-input::placeholder {
    color: #999;
    font-style: italic;
}

.yrt-actual-distance-input.saving {
    border-color: #ff9800;
    background-color: #fff8e1;
}

.yrt-actual-distance-input.saved {
    border-color: #4caf50;
    background-color: #e8f5e8;
}

.yrt-actual-distance-input.error {
    border-color: #f44336;
    background-color: #ffebee;
}

.yrt-actual-distance-input.readonly {
    background: none !important;
    background-color: transparent !important;
    color: #16361c;
    cursor: not-allowed;
    opacity: 1;
    font-weight: 700;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 60px;
    max-width: 80px;
}

.yrt-actual-distance-input.readonly:focus {
    outline: none;
    border: none;
    box-shadow: none;
    background: none !important;
    background-color: transparent !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.yrt-actual-distance-input.readonly::placeholder {
    color: #16361c;
    font-weight: 700;
    opacity: 0.7;
}

.yrt-distance-unit {
    font-size: 10px;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 20px;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Workout type colors */
.yrt-workout-run-easy {
    background-color: #e8f5e8;
    color: #16361c;
    border-left: 4px solid #28a745;
    border-bottom: 2px solid rgba(40, 167, 69, 0.2);
}

.yrt-workout-run-long {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-left: 4px solid #2196f3;
    border-bottom: 2px solid rgba(33, 150, 243, 0.2);
}

.yrt-workout-run-interval {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
    border-bottom: 2px solid rgba(244, 67, 54, 0.2);
}

.yrt-workout-run-tempo {
    background-color: #f3e5f5;
    color: #4a148c;
    border-left: 4px solid #9c27b0;
    border-bottom: 2px solid rgba(156, 39, 176, 0.2);
}

.yrt-workout-run-recovery {
    background-color: #fff3e0;
    color: #e65100;
    border-left: 4px solid #ff9800;
    border-bottom: 2px solid rgba(255, 152, 0, 0.2);
}

.yrt-workout-run-race {
    background-color: #fce4ec;
    color: #c2185b;
    border-left: 4px solid #e91e63;
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
}

.yrt-workout-run-shakeout {
    background-color: #f3e5f5;
    color: #4a148c;
    border-left: 4px solid #9c27b0;
    border-bottom: 2px solid rgba(156, 39, 176, 0.2);
}

.yrt-workout-strength {
    background-color: #e0f2f1;
    color: #00695c;
    border-left: 4px solid #009688;
    border-bottom: 2px solid rgba(0, 150, 136, 0.2);
}

.yrt-rest-day {
    background-color: transparent;
    color: #17131b;
    border: none;
    font-style: italic;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}

.yrt-no-color {
    background-color: transparent;
    color: #333;
    border: none;
    font-style: italic;
}

.yrt-empty-day {
    background-color: #fafafa;
    color: #757575;
    border-left: 4px solid #bdbdbd;
    border-bottom: 2px solid rgba(189, 189, 189, 0.2);
    font-style: italic;
}

/* Loading and Error States */
.yrt-loading {
    text-align: center;
    padding: 40px;
    color: #f1ebe7;
    font-style: italic;
    background-color: #16361c;
    border-radius: 8px;
    margin: 20px;
}

.yrt-error {
    text-align: center;
    padding: 40px;
    color: #f1ebe7;
    background-color: #16361c;
    border: 1px solid #d0ee88;
    border-radius: 8px;
    margin: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .yrt-active-plan-container {
        padding: 10px;
    }
    
    .yrt-active-plan-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .yrt-active-plan-header h1 {
        font-size: 20px;
    }
    
    .yrt-active-plan-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .yrt-week-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .yrt-week-selector {
        order: -1;
    }
    
    .yrt-week-header-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .yrt-week-progress {
        min-width: 60px;
    }
    
    .yrt-progress-bar {
        height: 6px;
    }
    
    .yrt-progress-text {
        font-size: 10px;
    }
    
    .yrt-week-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .yrt-day-cell {
        min-height: auto;
        height: auto;
        padding: 8px;
    }
    
    .yrt-day-header {
        font-size: 12px;
        padding: 3px 0;
    }
    
    .yrt-workout {
        min-height: auto;
        height: auto;
        padding: 8px;
        font-size: 11px;
    }
    
    .yrt-workout-title {
        font-size: 11px;
    }
    
    .yrt-workout-distance {
        font-size: 12px;
        font-weight: 700;
    }
    
    .yrt-workout-pace {
        font-size: 11px;
        font-weight: 600;
    }
    
    .yrt-workout-hr,
    .yrt-workout-description {
        font-size: 9px;
    }
    
    .yrt-notes-label {
        font-size: 8px;
    }
    
    .yrt-notes-content {
        font-size: 9px;
    }
    
    .yrt-status-buttons {
        gap: 4px;
    }
    
    .yrt-status-btn {
        padding: 3px 6px;
        font-size: 9px;
        min-width: 40px;
    }
    
    .yrt-week-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .yrt-week-header-left,
    .yrt-week-header-right {
        justify-content: center;
    }
    
    .yrt-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .yrt-edit-plan-btn,
    .yrt-back-to-dashboard {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Actual distance input mobile styles */
    .yrt-actual-distance-section {
        margin-top: 6px;
        padding-top: 6px;
    }
    
    .yrt-actual-distance-label {
        font-size: 8px;
        margin-bottom: 3px;
        text-align: center;
        width: 100%;
    }
    
    .yrt-actual-distance-input {
        padding: 2px 4px;
        font-size: 9px;
        min-width: 50px;
        max-width: 70px;
        text-align: center;
    }
    
    .yrt-distance-unit {
        font-size: 8px;
        min-width: 15px;
        text-align: center;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .yrt-week-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .yrt-day-cell {
        min-height: auto;
        height: auto;
    }
    
    .yrt-workout {
        min-height: auto;
        height: auto;
        font-size: 11px;
    }
}

/* Large screen optimizations */
@media screen and (min-width: 1025px) {
    .yrt-week-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .yrt-day-cell {
        min-height: auto;
        height: auto;
    }
    
    .yrt-workout {
        min-height: auto;
        height: auto;
    }
}

/* Print styles */
@media print {
    .yrt-active-plan-actions,
    .yrt-week-navigation {
        display: none;
    }
    
    .yrt-active-plan-container {
        background-color: white;
        box-shadow: none;
    }
    
    .yrt-week-display {
        box-shadow: none;
    }
    
    .yrt-day-cell {
        border: 1px solid #ccc;
    }
}

/* Trial Mode Styles for Active Plan */
.yrt-trial-locked {
    position: relative;
    /* filter: blur(3px); - REMOVED BLUR */
    pointer-events: none;
    opacity: 0.7;
}

.yrt-trial-locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 12px;
}

.yrt-trial-locked::after {
    content: 'UNLOCK entire plan for 4.99';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
    border: none;
    transition: all 0.3s ease;
    filter: none !important;
}

.yrt-trial-locked:hover::after {
    background: linear-gradient(135deg, #ee5a24, #e74c3c);
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

.yrt-trial-locked .yrt-week-header {
    filter: none;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.yrt-unlock-section {
    text-align: center;
    padding: 10px;
}

.yrt-unlock-week-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3) !important;
    margin-bottom: 8px !important;
    filter: none !important;
    z-index: 100 !important;
    position: relative !important;
}

.yrt-unlock-week-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #e74c3c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4) !important;
}

.yrt-unlock-message {
    font-size: 12px;
    color: #b8d870;
    margin: 0;
    line-height: 1.2;
}

/* Top-level unlock button */
.yrt-top-unlock-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 30px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
    margin: 20px auto !important;
    display: block !important;
    text-align: center !important;
    width: fit-content !important;
    filter: none !important;
    z-index: 100 !important;
    position: relative !important;
    text-decoration: none !important;
}

.yrt-top-unlock-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #e74c3c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Custom Notification System */
.yrt-notification-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(23, 19, 27, 0.9) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(5px) !important;
    animation: fadeIn 0.3s ease-out !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.yrt-notification-modal {
    background: #17131b !important;
    border: 2px solid #d0ee88 !important;
    border-radius: 12px !important;
    padding: 0 !important;
    max-width: 450px !important;
    width: 85% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 10px 30px rgba(208, 238, 136, 0.2) !important;
    animation: slideIn 0.4s ease-out !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.yrt-notification-header {
    background: linear-gradient(135deg, #16361c 0%, #1a4a24 100%) !important;
    color: #d0ee88 !important;
    padding: 20px !important;
    border-radius: 10px 10px 0 0 !important;
    text-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.yrt-notification-title {
    font-family: 'League Spartan', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d0ee88 !important;
    line-height: 1.2 !important;
}

.yrt-notification-content {
    padding: 25px !important;
    text-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.yrt-notification-message {
    color: #f1ebe7 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    font-family: 'Rajdhani', sans-serif !important;
    text-align: center !important;
}

.yrt-notification-buttons {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.yrt-notification-btn {
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'League Spartan', sans-serif !important;
    min-width: 100px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.yrt-notification-btn-primary {
    background: linear-gradient(135deg, #d0ee88 0%, #a8d65a 100%) !important;
    color: #17131b !important;
    border: 2px solid #d0ee88 !important;
}

.yrt-notification-btn-primary:hover,
.yrt-notification-btn-primary:focus,
.yrt-notification-btn-primary:active {
    background: linear-gradient(135deg, #a8d65a 0%, #8bc34a 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(208, 238, 136, 0.3) !important;
    color: #17131b !important;
    text-decoration: none !important;
}

.yrt-notification-btn-secondary {
    background: transparent !important;
    color: #d0ee88 !important;
    border: 2px solid #d0ee88 !important;
}

.yrt-notification-btn-secondary:hover,
.yrt-notification-btn-secondary:focus,
.yrt-notification-btn-secondary:active {
    background: #d0ee88 !important;
    color: #17131b !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* Simple Alert Style */
.yrt-simple-alert {
    max-width: 350px !important;
}

.yrt-simple-alert .yrt-notification-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
}

.yrt-simple-alert .yrt-notification-title {
    color: white !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .yrt-notification-modal {
        width: 95%;
        margin: 10px;
    }
    
    .yrt-notification-buttons {
        flex-direction: column;
    }
    
    .yrt-notification-btn {
        width: 100%;
    }
} 