@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://cdn.jsdelivr.net/npm/simple-datatables@7.1.2/dist/style.min.css");

:root {
    --brand-red: #dc3545;
    --brand-orange: #fd7e14;
    --brand-white: #ffffff;
    --brand-grey: #6c757d;
}

.navbar-custom {
    background-color: var(--brand-red);
}

.transaction-body {
    min-height: 400px;
}

.activity-card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.activity-list .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;

}

.login-body {
    background-color: var(--brand-red);
}

.fake-input {
     display: block;
     width: 100%;
     padding: 0.375rem 0.75rem;
     font-size: 1rem;
     font-weight: 400;
     line-height: 1.5;
     color: #212529;
     background-color: #f8f9fa; /* Slight tint to show it's read-only */
     background-clip: padding-box;
     border: 1px solid #ced4da;
     border-radius: 0.25rem;
     min-height: 38px; /* Standard input height */
     word-wrap: break-word;
 }

.fake-textarea {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    min-height: 120px; /* Mimics a 5-row textarea */
    white-space: pre-wrap; /* Crucial: respects line breaks and wrapping */
    overflow-wrap: break-word;
}

.fake-checkbox-wrapper {
    display: flex;
    align-items: flex-start; /* Aligns checkbox with the first line of text */
    margin-bottom: 0.75rem;
}

.fake-checkbox {
    flex-shrink: 0; /* Prevents the box from becoming an oval on long text */
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    position: relative;
    background-color: #f8f9fa;
    margin-top: 0.15rem; /* Tiny nudge to line up with the first line of text */
}

.fake-checkbox.checked {
    background-color: #0d6efd; /* Bootstrap blue */
    border-color: #0d6efd;
}

/* The Checkmark */
.fake-checkbox.checked::after {
    content: '';
    position: absolute;
    left: 6px;    /* Horizontal position */
    top: 2px;     /* Vertical position */
    width: 6px;   /* Width of the check */
    height: 11px; /* Height of the check */
    border: solid white;
    border-width: 0 2.5px 2.5px 0; /* Thickness of the lines */
    transform: rotate(45deg);
}
