/* =========================================================
   Global Font
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    font-family: 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
}

/* =========================================================
   Remove Default Link Styling (GLOBAL RESET)
   ========================================================= */
a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    color: inherit !important;
}

/* Clickable card wrapper */
.card-link-wrap {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   Hyperlink Style (INTENTIONAL LINKS ONLY)
   Usage:
   <a href="..." class="hyperlink01">Click here</a>
   ========================================================= */
.hyperlink01 {
    color: #0d6efd !important;        /* Bootstrap blue */
    font-style: italic;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.hyperlink01:hover {
    color: #0b5ed7 !important;
    text-decoration: underline !important;
}

.hyperlink01:focus,
.hyperlink01:active {
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================================
   Label Style – Primary Content (ITALIC)
   ========================================================= */
.label01 {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    font-style: italic;
    color: #000;
    margin-bottom: 4px;
}

/* =========================================================
   Label Style – Page Heading / Status
   ========================================================= */
.label02 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

/* =========================================================
   Label Style – Meta / Secondary Text
   ========================================================= */
.label03 {
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #444;
    display: block;
    margin-bottom: 4px;
}

/* =========================================================
   Input Box Style
   ========================================================= */
.input_box01 {
    display: block;
    width: 100%;

    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #000;

    border: none !important;
    border-bottom: 1px solid #bdbdbd !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    padding: 6px 2px 5px 2px;
    margin-bottom: 5px;
    transition: border-bottom-color 0.25s ease;
}

.input_box01:hover {
    border-bottom-color: #0d6efd !important;
}

.input_box01:focus {
    outline: none !important;
    border-bottom: 2px solid #0d6efd !important;
    box-shadow: none !important;
}

.input_box01:disabled {
    background: transparent !important;
    color: #666 !important;
    border-bottom: none !important;
    cursor: not-allowed !important;
}

/* =========================================================
   Button Style – Primary Green
   ========================================================= */
.button01 {
    background-color: #198754;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;

    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    width: 100%;
    cursor: pointer;

    transition: background-color 0.25s ease, transform 0.2s ease;
}

.button01:hover {
    background-color: #146c43;
}

.button01:disabled {
    background-color: #9ac7b0;
    cursor: not-allowed;
}

/* =========================================================
   Card Hover Effect
   ========================================================= */
.purchase-card {
    border: none !important;
    outline: 1px solid #d1d5db;
    border-radius: 14px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, outline-color 0.25s ease;
}

.card-link-wrap:hover .purchase-card {
    transform: translateY(-2px) scale(1.04);
    outline-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.20);
}

/* =========================================================
   Action Buttons
   ========================================================= */
.action_btn {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;

    padding: 10px 16px;
    border-radius: 6px;
    min-width: 110px;

    border: none;
    color: #ffffff;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.action_edit { background: #0d6efd; }
.action_edit:hover { background: #0b5ed7; }

.action_save { background: #6fb359; }
.action_save:hover { background: #30b505; }

.action_cancel { background: #9c5f60; }
.action_cancel:hover { background: #a10306; }

.action_btn:not(:disabled):hover {
    transform: translateY(-1px);
}
