/* =========================
   Base Styles
========================= */

body {
    font-family: "Mark Pro", sans-serif;
    font-size: 16px;
    line-height: 1.43;
    color: #181818;
    background-color: #ffffff;
}

/* Headings */
h3 {
    font-weight: 600;
    font-size: 20px;
}

h4 {
    font-weight: 700;
}
/* nav-link */
.nav-link {
    color: #ffffff;
    text-decoration: none;
}

    .nav-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

/* Labels */
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    border-radius: .25em;
}

.label-danger {
    background-color: #d9534f;
    margin-top: 1em;
}

/* Form focus */
.form-control:focus {
    border-color: #323232;
    border-width: 2px;
    box-shadow: none;
}


/*  Banner */
/*.banner-section {
    background: url('/banner.jpg') center/cover no-repeat;
    min-height: 250px;
    padding: 2rem 0;
}*/
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
    background-color: #343e48;
    padding: 25px;
}

/*  Footer */
.pcc-footer-light {
    background-color: #1d3c51;
    margin: 9em auto 0;
    padding: 46px;
}

    .pcc-footer-light a.pcc-dark-to-white {
        margin-left: 2em;
        text-decoration: underline;
        float: inline-end;
        color: #fff;
    }



/*  Barcode */
.barcode {
    font-family: 'Libre Barcode 39';
}


/*  Buttons */
.btn-default,
.btn-secondary,
.btn-warning,
.btn-danger {
    border: none !important;
    border-radius: 9999px;
    display: inline-block;
    font-weight: 600;
    line-height: 22px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all .15s ease;
    z-index: 0;
    color: #fff !important;
}

    .btn-default::before,
    .btn-secondary::before,
    .btn-warning::before,
    .btn-danger::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        transform: translateX(-101%);
        transition: transform .3s ease;
        z-index: -1;
    }

    .btn-default:hover::before,
    .btn-secondary:hover::before,
    .btn-warning:hover::before,
    .btn-danger:hover::before,
    .btn-default:focus::before,
    .btn-secondary:focus::before,
    .btn-warning:focus::before,
    .btn-danger:focus::before {
        transform: translateX(0);
    }

/* Colors */
.btn-default {
    background: #1d3c51 !important;
}

    .btn-default::before {
        background: #4a6374;
    }

.btn-secondary {
    background: #6c757d !important;
}

    .btn-secondary::before {
        background: #5c636a;
    }

.btn-warning {
    background: #ffc107 !important;
}

    .btn-warning::before {
        background: #e0a800;
    }

.btn-danger::before {
    background: #dc3545;
}



/*  Select2 */
.select2-container {
    width: 100% !important;
}



/* Container */
@media (min-width: 1200px) {
    .container {
        width: 1160px !important;
    }
}


/* Ticket table */
.ticket-table-wrap {
    border-radius: 16px;
    overflow-x: auto;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.ticket-table thead th {
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 700;
    background: #f3f4f6;
    white-space: nowrap;
}

.ticket-table tbody td {
    font-size: 14px;
    border-color: #edf2f7;
}

.ticket-table tbody tr:hover {
    background: #f9fafb;
}

.form-check-input {
    width: 18px;
    height: 18px;
}

/* Mobile table */
@media (max-width: 768px) {
    .ticket-table {
        min-width: 820px;
    }

        .ticket-table th,
        .ticket-table td {
            font-size: 13px;
            padding: 12px 10px;
        }
}


/* Alerts */
.info-alert {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 12px;
    font-size: 13px;
    color: #0c5460;
    border-radius: 4px;
    margin-top: 2em;
}


/* Forms */
.appeal-form,
.payment-success-wrap,
.email-action-wrap,
.wrap {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

    .appeal-form label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .appeal-form .form-control {
        border: 1px solid #d1d5db;
        border-radius: 10px;
        min-height: 44px;
        padding: 10px 12px;
    }


/* Payment Summary */

.payment-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.payment-success-header h6 {
    margin-top: 6px;
    font-size: 14px;
    color: #6b7280;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: #fafafa;
}

    .summary-item .label {
        font-size: 13px;
        font-weight: 600;
        color: #374151;
    }

    .summary-item .strong {
        font-weight: 700;
        color: #1cc2ad;
    }


/* Email Section */

.email-input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 220px;
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 8px 12px;
}



@media (max-width: 768px) {

    .pcc-footer-light {
        margin-top: 5em;
        padding: 20px;
    }

    .banner-section {
        min-height: 180px;
    }

    .payment-summary {
        grid-template-columns: 1fr;
    }

    .email-input-group {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .pcc-footer-light {
        margin-top: 4em;
        padding: 24px;
    }
}
