body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#app {
    min-height: 100vh;
}

.card {
    border-radius: 10px;
}

.card-header {
    background-color: #343a40;
    color: white;
    border-radius: 10px 10px 0 0 !important;
}

.bg-warning .card-body {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn {
    border-radius: 5px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#gold-form button[data-action="deposit"] {
    background-color: #28a745;
    border-color: #28a745;
}

#gold-form button[data-action="withdraw"] {
    background-color: #dc3545;
    border-color: #dc3545;
}

.transaction-deposit {
    color: #28a745;
    font-weight: bold;
}

.transaction-withdrawal {
    color: #dc3545;
    font-weight: bold;
}

/* Events styling */
#events-list .badge {
    font-size: 0.85rem;
}

.modal-content {
    border-radius: 10px;
}

.modal-header {
    background-color: #343a40;
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Editable amounts */
.editable-amount {
    cursor: pointer;
    transition: all 0.2s;
    padding: 5px 10px;
    border-radius: 5px;
}

.editable-amount:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.member-gold-amount {
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.member-gold-amount:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.editing-input {
    width: 150px;
    display: inline-block;
}

/* Storage location cards - ensure consistent sizing */
.storage-cards-row .col-md-4 .card {
    height: 100%;
    min-height: 150px;
}

.storage-cards-row .col-md-4 .card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.storage-cards-row .col-md-4 .card h5 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.storage-cards-row .col-md-4 .card h2 {
    margin-bottom: 0.5rem;
}

.storage-cards-row .col-md-4 .card small {
    margin-top: 0.25rem;
}
