/*
 * HRM Application Standardized Styles
 * Standardized UI/UX based on Client pages
 */

/* Spacing Utilities */
.mt-1 { margin-top: 5px !important; }
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 15px !important; }
.mt-4 { margin-top: 20px !important; }
.mt-5 { margin-top: 30px !important; }

.mb-1 { margin-bottom: 5px !important; }
.mb-2 { margin-bottom: 10px !important; }
.mb-3 { margin-bottom: 15px !important; }
.mb-4 { margin-bottom: 20px !important; }
.mb-5 { margin-bottom: 30px !important; }

.ml-1 { margin-left: 5px !important; }
.ml-2 { margin-left: 10px !important; }

.mr-1 { margin-right: 5px !important; }
.mr-2 { margin-right: 10px !important; }

/* Layout & Typography */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f8fafc;
}

.lead {
    font-weight: 700;
    color: #333;
}

/* Navbar Tweaks */
.navbar-default {
    background-color: #fff;
    border-bottom: 1px solid #e7e7e7;
}

/* Panels */
.panel {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.panel-heading {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Forms */
.form-group label {
    font-weight: 600;
    color: #555;
}

.help-block {
    font-size: 12px;
}

/* Tables */
.table thead th {
    background-color: #f9f9f9;
    border-bottom: 2px solid #ddd !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #666;
}

.table-hover tbody tr:hover {
    background-color: #f1f4f7 !important;
}

/* Custom Buttons (Mapping BS4/5 like classes to BS3) */
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover, .btn-secondary:focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

/* Action Icons */
.fa-btn {
    margin-right: 6px;
}

/* Search Form Specifics */
.search-form-container {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
}
