.alert-success {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #dcfce7;
    color: #166534;
    font-size: 14px;
}

.form-panel {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"] {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.form-group textarea:focus,
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="file"]:focus {
    border-color: #2563eb;
}

.logo-preview-box {
    margin-top: 24px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.settings-logo-preview {
    max-width: 220px;
    height: auto;
    display: block;
    margin-top: 12px;
}

.form-actions {
    margin-top: 24px;
}

@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.btn-primary-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary-inline:hover {
    background: #1d4ed8;
}

.table-panel {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
}

.admin-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

.thumb-image {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.muted-text {
    color: #64748b;
    font-size: 13px;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.badge.success {
    background: #dcfce7;
    color: #166534;
}

.badge.danger {
    background: #fee2e2;
    color: #b91c1c;
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fee2e2;
    color: #b91c1c;
    font-weight: 700;
    text-decoration: none;
}

.empty-box {
    padding: 30px;
    text-align: center;
    color: #64748b;
}

.select-input {
    width: 100%;
    height: 50px;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.info-box {
    margin-top: 24px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.info-box p {
    margin-bottom: 10px;
    font-weight: 700;
    color: #0f172a;
}

.info-box ul {
    padding-left: 20px;
    color: #475569;
    line-height: 1.8;
}
.settings-logo-preview {
    max-width: 260px;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 12px;
    border-radius: 14px;
}