/* Practice Sessions Page Styles */

.session-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.session-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    margin: 0 auto;
}

.session-icon i {
    font-size: 45px;
    color: white;
}

.session-duration {
    color: #1a2a6c;
    font-weight: 700;
    margin: 15px 0;
    font-size: 2.2rem;
}

.price-tag {
    font-size: 4rem;
    font-weight: 700;
    color: #1a2a6c;
    line-height: 1;
}

.price-tag .currency {
    font-size: 2.2rem;
    vertical-align: super;
    margin-right: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    margin: 12px 0;
    color: #666;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #b21f1f;
    margin-right: 10px;
    font-size: 1.4rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border: none;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: white !important;
}

.btn-primary:active,
.btn-primary:focus {
    color: white !important;
    text-decoration: none !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.3);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

.card-body {
    padding: 2rem;
    position: relative;
    z-index: 5;
} 