/* Guidelines Container */
.guidelines-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.guidelines-container h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Guidelines Box Styling */
.guideline-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

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

.guidelines-intro {
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.guideline-acknowledgment {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.signature-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.signature-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.signature-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.signature-input:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.form-actions {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Content Styling */
.guideline-content {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
}

.guideline-content h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.guideline-content p {
    margin-bottom: 1.5rem;
}

.guideline-content ul,
.guideline-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.guideline-content li {
    margin-bottom: 0.5rem;
}

/* Card Header */
.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem;
}

.card-header h3 {
    margin: 0;
    color: #2c3e50;
}

/* Action Buttons */
.action-buttons {
    margin-top: 2rem;
    text-align: center;
}

.btn-primary {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-check {
    margin: 1rem 0;
    padding: 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.form-check-input {
    margin-right: 1rem;
}

.form-check-label {
    font-weight: 500;
    color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .guidelines-container {
        margin: 1rem auto;
    }

    .guideline-box {
        padding: 1.5rem;
    }

    .guideline-content {
        font-size: 1rem;
    }

    .signature-box {
        padding: 1rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.75rem;
    }
}

/* Add these new styles */
.guidelines-progress {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.progress {
    height: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-bar {
    background-color: #468f77;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.guideline-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.guideline-page {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.guideline-page.fade-out {
    opacity: 0;
}

.guideline-page.fade-in {
    opacity: 1;
}

/* Update existing button styles */
.btn-outline-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid #468f77;
    color: #468f77;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #468f77;
    color: #fff;
}

.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guideline-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline-primary,
    .btn-primary {
        width: 100%;
    }
}
