/* NTL Hints Display Styles */
.ntl-hints-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background-color: #062045;
    background-image: url(https://cornflowerblue-gnu-465302.hostingersite.com/wp-content/uploads/2026/02/hints-bg-1019x1024.jpg);
    background-size: cover;
    background-position: top right;
    justify-content: center;
    border-radius: 25px;
}

.ntl-hints-header {
    text-align: center;
    margin-bottom: 20px;
}

.ntl-hints-title {
    font-size:36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ntl-logo {
    display: inline-block;
    margin: 0 8px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ntl-week-range {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    font-weight: bold;
}

.ntl-hints-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ntl-nav-btn {
    background: #c41e3a;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 0px;
}

.ntl-nav-btn:hover:not(:disabled) {
    background: #a01829;
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.ntl-nav-btn:active:not(:disabled) {
    transform: scale(1.05);
}

.ntl-nav-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

.ntl-day-display {
    text-align: center;
    min-width: 160px;
}

.ntl-current-day {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ntl-current-date {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ntl-hints-content {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ntl-hints-graphic {
    margin-bottom: 20px;
    text-align: center;
}

.ntl-graphic-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ntl-hints-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ntl-hint-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #c41e3a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ntl-hint-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ntl-hint-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #c41e3a 0%, #a01829 100%);
    border-radius: 10px 0 0 10px;
}

.ntl-hint-label {
    font-size: 11px;
    font-weight: 700;
    color: #c41e3a;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
}

.ntl-hint-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    font-weight: 500;
    margin-bottom: 12px;
    flex-grow: 1;
    font-weight: bold;
}

.ntl-copy-btn {
    background: #c41e3a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: auto;
}

.ntl-copy-btn:hover {
    background: #a01829;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(196, 30, 58, 0.3);
}

.ntl-copy-btn:active {
    transform: translateY(0);
}

.ntl-copy-btn.copied {
    background: #22c55e;
}

.ntl-copy-btn.copied:hover {
    background: #16a34a;
}

.ntl-copy-icon {
    width: 14px;
    height: 14px;
}

.ntl-hints-loading {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ntl-hints-loading p {
    margin-top: 15px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.ntl-spinner {
    border: 4px solid rgba(196, 30, 58, 0.15);
    border-top: 4px solid #c41e3a;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ntl-hints-error {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 2px solid #fc8181;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ntl-hints-error p {
    color: #c53030;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.ntl-hints-tip {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ntl-tip-icon {
    width: 24px;
    height: 24px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.ntl-hints-tip p {
    margin: 0;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
}

.ntl-hints-tip strong {
    color: #f59e0b;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .ntl-hints-container {
        padding: 20px 15px;
    }
    
    .ntl-hints-list {
        grid-template-columns: 1fr;
    }
    
    .ntl-hints-title {
        font-size: 22px;
    }
    
    
    .ntl-hints-navigation {
        padding: 12px 10px;
        gap: 15px;
    }
    
    .ntl-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .ntl-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .ntl-day-display {
        min-width: 130px;
    }
    
    .ntl-current-day {
        font-size: 20px;
    }
    
    .ntl-current-date {
        font-size: 13px;
    }
    
    .ntl-hints-content {
        padding: 20px;
    }
    
    .ntl-hint-item {
        padding: 16px;
    }
    
    .ntl-hint-text {
        font-size: 15px;
    }
    
    .ntl-hints-loading,
    .ntl-hints-error {
        padding: 40px 20px;
    }
    
    .ntl-hints-tip {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .ntl-tip-icon {
        width: 20px;
        height: 20px;
    }
    
    .ntl-hints-tip p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ntl-hints-container {
        padding: 15px 10px;
    }
    
    .ntl-hints-title {
        font-size: 20px;
    }

    
    .ntl-week-range {
        font-size: 13px;
    }
    
    .ntl-hints-navigation {
        gap: 12px;
        padding: 10px;
    }
    
    .ntl-day-display {
        min-width: 110px;
    }
    
    .ntl-current-day {
        font-size: 18px;
    }
    
    .ntl-current-date {
        font-size: 12px;
    }
    
    .ntl-hints-content {
        padding: 16px;
    }
    
    .ntl-hint-item {
        padding: 14px;
    }
    
    .ntl-hint-text {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .ntl-hints-navigation {
        display: none;
    }
    
    .ntl-hints-container {
        max-width: 100%;
    }
}

.hints-popup {
    align-items: center;
    border-width: 0;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    letter-spacing: .5px;
    padding: .5em 1em;
    position: fixed;
    right: 0px;
    bottom: 100px;
    color: #ffffff;
    background-color: rgb(0, 138, 164);
    font-size: 26px;
    font-family: "Barlow Condensed";
    text-align: center;
    font-weight: 700;
}

.ntl-nav-btn svg {
    display: block;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
}
