/**
 * XStore Client - Stiilid
 */

/* Layout */
body {
    padding-top: 56px;
    background-color: #f0f2f5;
}

.client-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 10px;
}

/* Scan input */
#scanInput {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Issue button */
#issueBtn {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 10px;
}

/* Recent issues */
.list-group-item {
    border-left: none;
    border-right: none;
}

/* Quantity controls */
#issueQuantity {
    font-weight: bold;
}

/* Toast */
.toast.border-success { border-left: 4px solid #198754 !important; }
.toast.border-danger { border-left: 4px solid #dc3545 !important; }

/* Search results */
#resultsList .list-group-item-action {
    cursor: pointer;
    transition: background-color 0.15s;
}

#resultsList .list-group-item-action:active {
    background-color: #e9ecef;
}
