/* Instructions Page Styles */
.instructions-page .card {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: none;
}

.instructions-page .card-header {
    border-radius: 15px 15px 0 0 !important;
    border-bottom: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.instructions-page .card-primary .card-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.instructions-page .card-success .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.instructions-page .card-warning .card-header {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.instructions-page .card-info .card-header {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.instructions-page .card-secondary .card-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.instructions-page .card-danger .card-header {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.instructions-page .card-outline {
    border: 2px solid;
}

.instructions-page .card-outline .card-header {
    background: transparent !important;
    color: inherit;
}

.instructions-page .fa-1-circle::before {
    content: "1";
    font-weight: bold;
}

.instructions-page .fa-2-circle::before {
    content: "2";
    font-weight: bold;
}

.instructions-page .fa-3-circle::before {
    content: "3";
    font-weight: bold;
}

.instructions-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.instructions-page .btn-lg {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.instructions-page .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instructions-page .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.instructions-page .list-unstyled li:last-child {
    border-bottom: none;
}

.instructions-page .text-center .fa-3x {
    margin-bottom: 15px;
    display: block;
}

.instructions-page h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.instructions-page ul li, .instructions-page ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instructions-page .hero h1 {
        font-size: 2.5rem;
    }
    
    .instructions-page .card-body {
        padding: 15px;
    }
    
    .instructions-page .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Animation for cards */
.instructions-page .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructions-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon animations */
.instructions-page .fas {
    transition: transform 0.3s ease;
}

.instructions-page .card:hover .fas {
    transform: scale(1.1);
}

/* Step numbers styling */
.instructions-page .fa-1-circle,
.instructions-page .fa-2-circle,
.instructions-page .fa-3-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
} 