/* style.css */
body { font-family: 'Cairo', sans-serif; background: #f8f9fa; padding: 0; margin: 0; padding-bottom: 80px; }

#login-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #2f3542; z-index: 9999; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: white;
}
#login-input { width: 200px; text-align: center; font-size: 20px; letter-spacing: 5px; }

.admin-header {
    background: #ff9900; color: white; padding: 15px; text-align: center;
    font-weight: bold; font-size: 18px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 100;
}

.container { max-width: 600px; margin: 0 auto; padding: 15px; }

input, textarea, select, button { width: 100%; padding: 12px; margin: 8px 0; border: 1px solid #ddd; border-radius: 12px; font-family: 'Cairo', sans-serif; box-sizing: border-box; outline: none; }
textarea { resize: vertical; min-height: 100px; }

button.action-btn { background: #ff9900; color: white; border: none; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(255, 153, 0, 0.2); }
button.action-btn:active { transform: scale(0.98); }

button.delete-btn { background: #ff4757; color: white; width: auto; padding: 5px 15px; font-size: 12px; border-radius: 20px; }

.status { text-align: center; margin-top: 5px; font-size: 14px; font-weight: bold; }

.order-item { background: white; border: 1px solid #eee; padding: 15px; margin-bottom: 15px; border-radius: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.order-header { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 10px; color: #2f3542; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.order-details { font-size: 14px; color: #57606f; line-height: 1.7; }

.tab-content { display: none; animation: fadeIn 0.3s; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
    background: white; border-top: 1px solid #eee; display: flex;
    justify-content: space-around; align-items: center; z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.nav-btn {
    background: none; border: none; color: #a4b0be; font-size: 11px;
    display: flex; flex-direction: column; align-items: center; gap: 5px; margin: 0; width: auto;
}
.nav-btn i { font-size: 22px; margin-bottom: 2px; transition: 0.3s; }
.nav-btn.active { color: #ff9900; }
.nav-btn.active i { transform: translateY(-3px); }

.section-label {
    font-size: 16px; font-weight: bold; color: #2f3542; margin-bottom: 15px; display: block;
    border-right: 4px solid #ff9900; padding-right: 10px; background: #fff; padding: 10px; border-radius: 5px;
}

.banner-list-item {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; padding: 10px; margin-bottom: 10px; border-radius: 8px; border: 1px solid #eee;
}

.design-option-btn {
    background: white; border: 1px solid #eee; padding: 20px; text-align: center;
    border-radius: 15px; cursor: pointer; transition: 0.2s; margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); display: block; width: 100%;
}
.design-option-btn:hover { background: #fffbf5; border-color: #ff9900; }
.design-option-btn i { font-size: 30px; color: #ff9900; margin-bottom: 10px; display: block; }
.design-option-btn span { font-weight: bold; font-size: 16px; color: #333; }

img { max-width: 100%; height: auto; }
.banner-preview { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; }
