
footer {
    border-radius: 10px;
    margin-top: auto;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107 !important;
}
        .badge-note {
    background: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-bottom: 10px;
}
.btn-pricing {
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}
body {
    position: relative;
    min-height: 100vh;
    padding: 10px;
}

.test-container {
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.control-panel {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.content-area {
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Dynamic Panel Styles */
.dynamic-panel {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 1050;
    max-width: 90%;
    width: 300px;
    transition: all 0.3s ease;
}

.side-panel {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: #ffeb3b;
    border: 2px solid #ff9800;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 1050;
    max-width: 90%;
    width: 250px;
    transition: all 0.3s ease;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .dynamic-panel, .side-panel {
        width: 90%;
        max-width: 90%;
        left: 5%;
        right: 5%;
        transform: none;
        top: 10%;
        max-height: 80%;
        overflow-y: auto;
    }
    
    .dynamic-panel {
        left: 5%;
        right: 5%;
    }
    
    .side-panel {
        left: 5%;
        right: 5%;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .control-panel {
        padding: 10px;
    }
    
    .content-area {
        padding: 10px;
    }
}

.panel-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.9);
}

.panel-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Mobile-specific panel visibility */
@media (max-width: 768px) {
    .panel-visible {
        transform: none;
    }
    
    .panel-hidden {
        transform: scale(0.9);
    }
}

.close-panel {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
}

.close-panel:hover {
    color: #dc3545;
}

/* Backdrop for mobile panels */
.panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1049;
    display: none;
}

.panel-backdrop.active {
    display: block;
}

/* Instructions styling */
.instructions-card {
    border-left: 4px solid #0d6efd;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.test-steps {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}

.expected-results {
    background-color: #e9f7ef;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    border-left: 4px solid #28a745;
}

.amazing-feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:#f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amazing-feature h4 {
    
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.feature-highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 5px 5px 0;
}

/* Pricing Section Styles */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.feature-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    background: #0d6efd;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.included-features {
    background-color: #e9f7ef;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #28a745;
}
