* {
    font-family: "Poppins", sans-serif;
}

/* ======= font ====== */
h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
    font-weight: 300;
}

p {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.small-muted {
    font-size: 12px;
    color: #6c757d;
}

.fw-semibold {
    font-weight: 600;
}

.text-gray {
    color: #606060;
}

/* ===== colors ===== */
.bg-success-light {
    background: #E3F8EB;
}

.bg-warning-light {
    background: #ffeed3;
}

.bg-info-light {
    background: #DBEAFE;
}

.bg-danger-light {
    background: #FDE8E8;
}

.bg-secondary-light {
    background: #071B441A;
}

/* ===== icon helpers ===== */
.notify-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(infinity * 1px);
    position: relative
}

.notify-circle.notify-circle-sm {
    width: 40px;
    height: 40px;
}

.notify-circle > .notify-circle-icon {
    position: absolute;
    font-size: 2.5rem;
}

.notify-circle.notify-circle-sm > .notify-circle-icon {
    position: absolute;
    font-size: 1.2rem;
}

/* ===== card helpers ===== */
.lg-rounded-card-border {
    border-radius: 1.2em;
    padding: 1.5rem;
}

.lg-rounded-card {
    border-radius: 1.2em;
}

.card-orange {
    background: linear-gradient(
            to bottom,
            #ea9325 0%,
            #ea9325 70%,
            #f3a940 88%,
            #f3a940 100%
    );
}

.alert-rounded {
    border-radius: 1rem;
}

/* ===== upload component ===== */
.drop-zone {
    border: 2px dashed #ced4da;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #fafbfc;
}

.drop-zone.dragover {
    border-color: #0d6efd;
    background: #f0f6ff;
}

/* ===== btn helpers ===== */
.btn-white {
    background: #fff;
    border: 1px solid #000;
}

.btn-white:hover {
    background: #f4f4f4;
}

.btn-white-no-border {
    background: #fff;
    border: #fff;
}

.btn-white-no-border:hover {
    background: #f4f4f4;
}

.btn-rounded {
    border-radius: 1.2em;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-primary-gradient {
    border-radius: 999px !important;
    border: 0 !important;
    color: #fff !important;
    background: linear-gradient(180deg, #0a2a66 0%, #0b49d6 100%) !important;
}

.btn-primary-gradient:hover {
    filter: brightness(0.98);
}

.btn-primary-gradient:active {
    filter: brightness(0.95);
}

/* ===== input helpers ===== */
.rounded-input {
    border-radius: 999px;
}

textarea.rounded-input {
    border-radius: 14px;
}

.password-field {
    position: relative;
}

.password-field .password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    color: #606060;
    line-height: 1;
}

.password-field .password-toggle:focus {
    outline: none;
    box-shadow: none;
}

.password-field .form-control {
    padding-right: 40px;
}

.tag {
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
}

.cursor-pointer {
    cursor: pointer;
}

.pagination-circle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #0C2A86;
    color: #0C2A86;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
}

.pagination-circle--active {
    color: #fff;
    border-color: #0C2A86;
    background: #0C2A86;
    box-shadow: 0 .45rem 1.1rem rgba(0, 0, 0, .2);
}

.pagination-circle:hover {
    color: #fff;
    border-color: #0C2A86;
    background: #0C2A86;
}

.pagination-circle--disabled {
    border-color: #cbd5f2;
    color: #cbd5f2;
    background: #f7f8fd;
    cursor: not-allowed;
}

.pagination-circle--disabled:hover {
    border-color: #cbd5f2;
    color: #cbd5f2;
    background: #f7f8fd;
}

@media (max-width: 768px) {
    .lg-rounded-card-border {
        padding: 0.5rem;
    }

    .navbar-actions {
        flex-wrap: nowrap;
        gap: 0.75rem;
        margin-top: 15px;
    }
    
    .course-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .course-info h3 {
        font-size: 1.4rem;
    }

    .course-info p {
        font-size: 0.8rem;
    }
    
    .course-description > li{
        font-size: 0.7rem;
    }
    
    .finish-actions > button{
        font-size: 0.8rem;
    }

    .play-icon {
      width: 45px;
      height: 30px;
    }
    
    .card-send-video {
        height: 420px !important;
    }
}

.cursor-pointer{
    cursor: pointer;
}
