.card-title-prod {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 600;
}
.card-text-prod {
    color: #fff !important;
    font-size: 1rem;
}
.fw-bold-prod {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.05rem;
}

.qty-prod {
    color: #fff !important;
    background-color: #07273c !important; /* match card bg if needed */
    border: 1px solid #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 1.05rem;
    width: 80px; /* or any preferred width */
    margin-bottom: 0.5rem;
}

.qty-prod::placeholder {
    color: #eee !important;
}

/* existing rules ... */

.qty-prod::placeholder {
    color: #eee !important;
}

/* Timezone list styles */
.tz-list .tz-item {
    color: #00008b;           /* dark blue text */
    font-weight: 600;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.tz-list .tz-item:hover {
    background-color: #f5f5ff;
}

/* Timezone list items: dark blue text */
.card-body.bg-white .list-group-item.list-group-item-action.tz-item {
    color: #00008b !important;    /* dark blue */
}

/* Optional hover */
.card-body.bg-white .list-group-item.list-group-item-action.tz-item:hover {
    color: #0000cc !important;
    background-color: #f5f5ff;
}

/* GAdmin Dashboard Cards */
.gadmin-dashboard-card {
    display: inline-block;
    background-color: #17384e !important;
    border: 2px solid #e5f0f5;
    border-radius: 10px;
    padding: 30px 20px !important;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e5f0f5 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.gadmin-dashboard-card:hover {
    background-color: #0f5a8a !important;
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 240, 245, 0.2);
}

