/* ===========================================
   Laundry ERP Admin Theme
   =========================================== */

/* General */
body {
    background: #f4f6fb;
    font-size: 14px;
}

/* ===========================================
   Cards
   =========================================== */

.card {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .08);
}

.dashboard-card {
    transition: .25s;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}

/* ===========================================
   Avatars
   =========================================== */

.avatar-lg {
    width: 60px;
    height: 60px;
}

/* ===========================================
   Tables
   =========================================== */

.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background: #206bc4;
    color: #fff;
    border: none;
    border-bottom: none;
    font-weight: 600;
    padding: .9rem .75rem;
}

.table tbody td {
    vertical-align: middle;
}

.table tbody tr:hover {
    background: #f8fafc;
}

/* ===========================================
   Navbar
   =========================================== */

.navbar-brand {
    font-weight: 600;
    font-size: 1.1rem;
}

.navbar-brand-image {
    height: 30px;
}

.page-body {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/* ===========================================
   Sidebar
   =========================================== */

.navbar-vertical {
    background: #1f2937;
}

.navbar-vertical .navbar-brand {
    color: #fff;
}

.navbar-vertical .nav-link {
    color: rgba(255,255,255,.85);
    transition: .2s;
    border-radius: 8px;
    margin: 2px 8px;
}

.navbar-vertical .nav-link:hover,
.navbar-vertical .nav-link.active {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.navbar-vertical .nav-link-icon {
    color: inherit;
}

.navbar-vertical .dropdown-item {
    color: rgba(255,255,255,.85);
}

.navbar-vertical .dropdown-item:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.navbar-vertical .dropdown-menu {
    background: transparent;
    border: 0;
}

/* ===========================================
   Topbar
   =========================================== */

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.page-header {
    background: #fff;
}

/* ===========================================
   Buttons
   =========================================== */

.btn {
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary {
    background: #206bc4;
    border-color: #206bc4;
}

.btn-primary:hover {
    background: #1c5aa8;
    border-color: #1c5aa8;
}

/* ===========================================
   Forms
   =========================================== */

.form-control,
.form-select {
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #206bc4;
}

/* ===========================================
   Badges
   =========================================== */

.badge {
    font-weight: 500;
    border-radius: 6px;
}

/* ===========================================
   Login Page
   =========================================== */

.page-center {
    background: #f4f6fb;
}

.login-card,
.auth-card {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #206bc4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.input-icon-addon {
    color: #206bc4;
}

/* ===========================================
   Alerts
   =========================================== */

.alert {
    border: 0;
    border-radius: 10px;
}

/* ===========================================
   Dropdown
   =========================================== */

.dropdown-menu {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
}

/* ===========================================
   Utility
   =========================================== */

.shadow-soft {
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

.rounded-lg {
    border-radius: 12px;
}