body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

.container {
    padding: 20px;
}

.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cocktail-card,
.panel {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
}

.cocktail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

input, textarea, select, button {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
}

button {
    cursor: pointer;
    background: #c48b2e;
    border: none;
    color: #111;
    font-weight: bold;
}

.queue-item,
.bartender-item {
    padding: 10px;
    border-bottom: 1px solid #2f2f2f;
}

.bartender-layout,
.admin-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.now-making {
    border: 2px solid #c48b2e;
}

.ready {
    color: #6ee7a8;
}

.flash.success {
    background: #1e4d31;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.flash.error {
    background: #6b1f1f;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bartender-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bartender-item {
    background: #222;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.bartender-item:hover {
    border-color: #c48b2e;
    background: #292929;
}

.bartender-item.active {
    border: 2px solid #c48b2e;
    background: #2b2418;
}

.action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.action-row form {
    flex: 1;
}

.notes {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #ccc;
}

.recipe-image {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
}

.ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.ingredient-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.ingredient-amount {
    display: inline-block;
    min-width: 90px;
    font-weight: bold;
    color: #c48b2e;
}

.danger {
    background: #a33;
    color: #fff;
}

.success-box {
    max-width: 500px;
    margin: 60px auto;
    text-align: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 30px;
}

.success-box strong {
    color: #c48b2e;
    font-size: 2rem;
}

.button-link {
    display: inline-block;
    margin: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #c48b2e;
    color: #111;
    text-decoration: none;
    font-weight: bold;
}

.button-link.secondary {
    background: #333;
    color: #fff;
}

.bartender-card {
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    border: 2px solid #333;
    cursor: pointer;
}

.status-queued {
    background: #2b2b2b;
    border-color: #555;
}

.status-making {
    background: #4a1717;
    border-color: #d64545;
}

.status-ready {
    background: #5db813;
    border-color: #9cf581;
}

.drink-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.drink-meta {
    text-align: right;
    min-width: 80px;
}

.status-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    opacity: 0.8;
}

.timer {
    display: block;
    margin-top: 6px;
    font-size: 1.4rem;
    font-weight: bold;
}

.admin-cocktail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #333;
}

.inactive-label {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #555;
    font-size: 0.75rem;
}

.small {
    width: auto;
    padding: 8px 12px;
}

.small-btn {
    width: auto;
    padding: 8px 10px;
}

.ingredient-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px;
    margin-bottom: 8px;
}