
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');
body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.small-subtitle {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #a0a0a0;
}
.btn-coral {
    background-color: #ff7e7e;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    padding: 10px 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.btn-coral:hover {
    background-color: #e66b6b; 
    color: white;
    transform: translateY(-1px);
}
.btn-outline-filter {
    background-color: white;
    border: 1px solid #e9ecef;
    color: #777;
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-outline-filter:hover, .btn-outline-filter.show {
    background-color: white;
    border-color: #ff7e7e;
    color: #ff7e7e;
}
.pill-input {
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 10px 15px;
}

.pill-input:focus {
    box-shadow: none;
    border-color: #ff7e7e;
}
.plat-card {
    transition: transform 0.2s;
}
.rounded-4 {
    border-radius: 20px !important;
}

.status-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bg-success { background-color: #4cd964 !important; }
.bg-danger { background-color: #ff3b30 !important; }
.quantity-controls button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #e9ecef;
    background: white;
    transition: all 0.2s;
}

.quantity-controls button:hover {
    background-color: #ff7e7e;
    color: white;
    border-color: #ff7e7e;
}
.bg-primary-subtle {
    background-color: #e7f1ff !important;
    color: #0d6efd !important;
}
.custom-switch {
    cursor: pointer;
    width: 3em !important;
    height: 1.5em !important;
}

.custom-switch:checked {
    background-color: #4cd964 !important;
    border-color: #4cd964 !important;
}
.btn-action-text {
    border: none;
    background: none;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.btn-action-text:hover {
    color: #ff7e7e;
    text-decoration: underline;
}

.btn-action-icon {
    border: none;
    background: none;
    font-size: 1.1rem;
    padding: 5px;
}
.dropdown-menu {
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1f1f1;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #fff5f5;
    color: #ff7e7e;
}
.admin-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    max-width: 700px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #ff7e7e;
    box-shadow: 0 0 0 4px rgba(255, 126, 126, 0.1);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.category-item input {
    cursor: pointer;
}