.course-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.course-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-label {
    color: #6c757d;
    font-weight: 500;
}

.info-value {
    color: #495057;
    font-weight: 400;
}

.student-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.student-icon {
    color: #17a2b8;
}

.price {
    color: #28a745;
    font-weight: 600;
}
.btn-debtors {
    background: #fd7e94;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}
.schedule-time {
    color: #6f42c1;
    font-weight: 500;
}
.btn-success{
    background-color: #6c6dd3!important;
    border-color: #6c6dd3!important;
}
.btn-success:active{
    background-color: #6c6dd3!important;
    border-color: #6c6dd3!important;
}
.btn-success:hover{
    background-color: #6c6dd3!important;
    border-color: #6c6dd3!important;
}
.btn-success:not([disabled]):not(.disabled).active, .btn-success:not([disabled]):not(.disabled):active, .show>.btn-success.dropdown-toggle{
    background-color: #6c6dd3!important;
    border-color: #6c6dd3!important;
}
.table tr th {
    white-space: nowrap!important;
}
.header-image img{
    max-height: 90px;
}
@media (max-width: 768px) {
    .header-image img {
        max-height: 50px;
    }
}
