/*******************************************************************************
// File Name: au-admin.css
// Purpose  : CSS for CRUD
//*****************************************************************************/

/* =========================================================
   BASE LAYOUT
========================================================= */
body {
    background: #f5f5f5;
    overflow: hidden;
    font-size: 14px;
}

.sidebar {
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #d1d5db;
}

.content {
    height: calc(100vh - 56px);
    overflow: hidden;
}

.card {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

/* =========================================================
   SCROLL AREAS
========================================================= */
.details-scroll {
    height: 55vh;
    overflow-y: auto;
}

/* =========================================================
   OUTLINED FIELDS (Qt / Desktop style)
========================================================= */
.outline-field {
    position: relative;
    margin-bottom: 12px;
}

.outline-field input,
.outline-field select,
.outline-field textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
}

.outline-field textarea {
    resize: vertical;
}

.outline-field label {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 12px;
    color: #6b7280;
}

/* =========================================================
   TOOLBAR (SINGLE SURFACE, FORMAL)
========================================================= */
.toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

/* =========================================================
   ICON BUTTONS
========================================================= */
.icon-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #d1d5db;
    background: #ffffff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-btn img {
    width: 20px;
    height: 20px;
}

.icon-btn:hover {
    background: #f1f5f9;
}

.icon-btn:active {
    background: #e5e7eb;
}

.icon-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* =========================================================
   TOOLBAR SEPARATORS (KEY FOR GROUPING)
========================================================= */
.toolbar-sep {
    width: 1px;
    height: 26px;
    background: #cbd5e1;
    margin: 0 6px;
}

/* =========================================================
   SEMANTIC ACCENTS (SUBTLE, PROFESSIONAL)
========================================================= */
/* search / filter */
.icon-search {
    border-color: #94a3b8;
}

/* navigation */
.icon-nav {
    border-color: #64748b;
}

/* CRUD */
.icon-crud {
    border-color: #f59e0b;
}

/* dangerous action */
.icon-danger {
    border-color: #dc2626;
}
/* =========================================================
   Menu Bar Fix
========================================================= */
/* FIX Bootstrap dropdown visibility in admin layout */
.navbar .dropdown-menu {
    z-index: 2000;
}