/* =====================================================
   GLOBAL UI STYLE — Buttons, Inputs, Layout, Cards
   ===================================================== */

/* === GLOBAL FONT === */
/* body,
input,
select,
textarea,
button,
label {
    font-family: "Inter", sans-serif !important;
} */

/* =====================================================
   GENERAL CARD
   ===================================================== */
/* .custom-block {
    border-radius: 16px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
    transition: 0.25s ease;
}

.custom-block:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
} */

/* =====================================================
   PROFILE FRONT
   ===================================================== */
/* .custom-block-profile-front {
    padding-top: 26px;
}

.custom-block-profile-image-wrap {
    margin: 0 auto 14px auto;
    position: relative;
}

.custom-block-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eef2ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.custom-block-edit-icon {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 5px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
} */

/* =====================================================
   LIST ITEM
   ===================================================== */
/* .list-group-item {
    border-radius: 10px !important;
    margin-bottom: 8px;
    padding: 12px 16px;
    border: none;
    background: #f8fafc;
} */

/* =====================================================
   BOTTOM NAV (Mobile)
   ===================================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

.bottom-nav-item {
    text-align: center;
    flex: 1;
    padding: 6px 0;
    font-size: 12px;
    color: #6b7280;
    transition: 0.2s;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    display: block;
    color: #4f46e5;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #4338ca;
}

.bottom-nav-item.active i,
.bottom-nav-item:hover i {
    color: #3730a3;
}

.page-content {
    margin-bottom: 90px;
}

@media (min-width: 768px) {
    .bottom-nav {
        display: none !important;
    }
}

/* =====================================================
   PROFILE CARD (Desktop)
   ===================================================== */
/* .profile-card {
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.profile-title {
    font-weight: 700;
    font-size: 22px;
    color: #1f2937;
} */

/* =====================================================
   LOGIN PAGE
   ===================================================== */
/* .login-body {
    background: #3b82f6 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.5s ease-in-out;
    padding: 32px 40px;
}

.login-title {
    font-weight: 700;
    font-size: 26px;
} */

/* =====================================================
   GLOBAL INPUT & FORM STYLE
   ===================================================== */
/*
label.form-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.form-control,
.form-control-lg,
.form-select,
input,
select,
textarea {
    padding: 14px 16px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    border: 1.6px solid #dcdfe6 !important;
    transition: 0.15s ease-in-out;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    border-color: #3875f6 !important;
    box-shadow: 0 0 0 3px rgba(56, 117, 246, 0.1) !important;
} */

/* =====================================================
   GLOBAL BUTTON STYLE
   ===================================================== */
/*
.btn-primary {
    border-radius: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: transform 0.15s ease, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
} */

/* =====================================================
   MOBILE RESPONSIVE STYLE
   ===================================================== */
/*
@media (max-width: 576px) {
    .login-body {
        background: #ffffff !important;
    }

    .profile-card {
        background: #ffffff !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        max-width: 100% !important;
    }

    .btn-primary,
    .btn-light {
        width: 100% !important;
        padding: 12px !important;
        font-size: 15px !important;
    }

    .container,
    .content-wrapper {
        padding: 0 16px !important;
    }
} */

/* =====================================================
   ANIMATIONS
   ===================================================== */
/*
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* // Load file gambar */
/* === CUSTOM FILE UPLOAD BUTTON (LYNK STYLE) === */
/* .custom-file-upload {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: 0.2s ease;
}

.custom-file-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.custom-file-upload i {
    font-size: 18px;
    color: #3b82f6;
}

.custom-file-upload input {
    display: none;
} */
/* === FIX LOGIN CHECKBOX (INGAT SAYA) === */
/* .form-check-input {
    width: 14px !important;
    height: 14px !important;
    border-radius: 3px !important;
    border: 1.5px solid #9ca3af !important;
    cursor: pointer;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

label[for="remember"] {
    font-size: 14px !important;
    color: #374151 !important;
} */
