/* ============================================
   WMS_V2 Custom UI Improvements
   ============================================
   This file contains UI improvements for:
   - Increased font sizes
   - Enhanced login page
   - Larger buttons
   - Larger tables with better borders
   - Improved borders throughout
   ============================================ */

/* ============================================
   1. FONT SIZE IMPROVEMENTS
   ============================================ */

/* Base font sizes */
html {
    font-size: 16px;
    font-family: 'Google Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Google Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f3f6fb;
}

/* Content wrapper background */
.content-wrapper,
.right-side {
    background-color: #f3f6fb;
}

/* Apply Google Sans to all elements */
* {
    font-family: 'Google Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Heading sizes - increased proportionally */
h1, .h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

h4, .h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

h5, .h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

h6, .h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Page header specific */
.content-header h1 {
    font-size: 32px;
    font-weight: 600;
}

.content-header h1 small {
    font-size: 18px;
}

/* Box titles */
.box-title {
    font-size: 20px;
    font-weight: 600;
}

.page-header {
    font-size: 26px;
}

.page-header small {
    font-size: 16px;
}

/* Form labels */
label, .control-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Form inputs */
.form-control {
    font-size: 16px;
    padding: 10px 12px;
    height: auto;
    line-height: 1.5;
}

.form-control::placeholder {
    font-size: 15px;
    opacity: 0.7;
}

/* Help text */
.help-block, .help-block small {
    font-size: 14px;
}

/* Navigation & Sidebar */
.sidebar-menu > li > a {
    font-size: 15px;
    padding: 14px 5px 14px 15px;
    line-height: 1.5;
}

.sidebar-menu > li.header {
    font-size: 13px;
    padding: 12px 25px 12px 15px;
}

.treeview-menu > li > a {
    font-size: 14px;
    padding: 8px 5px 8px 15px;
}

/* Header navbar */
.navbar-nav > li > a {
    font-size: 15px;
    padding: 15px 12px;
}

.navbar-brand {
    font-size: 20px;
}

/* Footer */
.main-footer {
    font-size: 14px;
    padding: 18px;
}

/* ============================================
   2. LOGIN PAGE IMPROVEMENTS
   ============================================ */

/* Login page background */
body.login-page,
body.register-page {
    background: #ffffff !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Split screen login wrapper - 50% left, 50% right */
.login-wrapper {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Left side panel - Dark blue (50% width) */
.login-left-panel {
    width: 50%;
    background: #1e3a5f;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Left side content - centered in split screen */
.login-left-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}

/* Large icon at top */
.login-icon-large {
    font-size: 100px;
    text-align: center;
    margin: 0 0 30px 0;
    opacity: 0.9;
    display: block;
    width: 100%;
}

/* Main title */
.login-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-align: center;
    letter-spacing: -1px;
    width: 100%;
}

/* Description text */
.login-description {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-align: center;
    opacity: 0.95;
    width: 100%;
}

/* Features section */
.login-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 0 40px 0;
    padding-top: 0;
    width: 100%;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer on left side */
.login-footer-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    width: 100%;
}

.copyright {
    flex: 1;
}

.version {
    flex: 1;
    text-align: right;
}

/* Login right panel - right side (50% width) */
.login-right-panel {
    width: 50%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    z-index: 2;
    background: #ffffff;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Ensure login panel is centered */
.login-right-panel .panel-bd {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 30px;
}

/* Warehouse text styling - if HTML element exists */
.login-left-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    pointer-events: none;
    width: 80%;
}

.login-left-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.login-left-content p {
    font-size: 20px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Hide login logo (Arcade header) */
.login-logo {
    display: none !important;
}

/* Login panel - white card with rounded corners */
.panel-bd {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8ecef;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    z-index: 3;
    width: 100%;
    /* max-width: 450px; */
    /* padding: 50px 40px; */
    /* margin: 0 auto; */
}

.panel-heading {
    padding: 0 0 25px 0;
    background: transparent;
    border-bottom: none;
    margin-bottom: 0;
}

.header-title {
    position: relative;
}

.header-title h3 {
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-title small {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
    display: block;
    margin-top: 6px;
    line-height: 1.5;
}

/* Form body padding */
.panel-body {
    padding: 0;
    background: transparent;
    margin-top: 0;
}

/* Form group spacing */
.panel-body .form-group {
    margin-bottom: 24px;
}

/* Form labels */
.panel-body .control-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    display: block;
}

/* Password label row with forgot password link */
.password-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password-link {
    font-size: 13px;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* Input wrapper for icons */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #6c757d;
    font-size: 18px;
    z-index: 10;
    pointer-events: none;
}

/* Input fields - light blue background */
.panel-body .form-control {
    font-size: 15px;
    padding: 12px 16px 12px 45px;
    height: 48px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    background: #e3f2fd;
    color: #2c3e50;
    box-sizing: border-box;
}

.panel-body .form-control:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
    outline: none;
    background: #ffffff;
}

.panel-body .form-control:hover {
    border-color: #adb5bd;
    background: #f0f7ff;
}

/* Password toggle icon */
.password-toggle {
    position: absolute;
    right: 16px;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.panel-body input[type="password"] {
    padding-right: 50px;
}

/* Checkbox group */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Help text */
.help-block.small {
    font-size: 13px;
    margin-top: 5px;
    color: #666;
}

/* Sign In button - blue button */
.signin-btn {
    font-size: 15px;
    padding: 12px 24px;
    height: 48px;
    width: 100%;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    border: none;
    background: #1e3a5f;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(30, 58, 95, 0.2);
    cursor: pointer;
}

.signin-btn:hover {
    background: #2a4d75;
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.3);
}

.signin-btn:active {
    background: #1a2f4a;
    box-shadow: 0 1px 2px rgba(30, 58, 95, 0.2);
}

.signin-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

/* SSO Divider */
.sso-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.sso-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e8ecef;
}

.sso-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 15px;
    color: #6c757d;
    font-size: 13px;
}

/* SSO Buttons */
.sso-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.sso-btn {
    flex: 1;
    height: 44px;
    border: 1px solid #e8ecef;
    border-radius: 6px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.sso-btn:hover {
    border-color: #cbd5e0;
    background: #f8f9fa;
}

.sso-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.sso-google .sso-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.sso-microsoft .sso-icon {
    background: linear-gradient(135deg, #f25022 0%, #7fba00 50%, #00a4ef 75%, #ffb900 100%);
    color: white;
}

/* Support link */
.support-link {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    margin-top: 20px;
}

.support-link-text {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}

.support-link-text:hover {
    text-decoration: underline;
}

/* Forgot password link */
.text-right a {
    font-size: 15px;
    padding-top: 15px;
    display: inline-block;
}

/* Login box body (alternative login structure) */
.login-box-body, .register-box-body {
    padding: 25px;
    font-size: 16px;
}

.login-box-msg, .register-box-msg {
    font-size: 16px;
    padding: 0 20px 20px 20px;
}

/* ============================================
   3. BUTTON SIZE IMPROVEMENTS
   ============================================ */

/* Base button size increase */
.btn {
    font-size: 15px;
    padding: 10px 20px;
    min-height: 42px;
    border-radius: 5px;
    font-weight: 500;
    line-height: 1.5;
    border-width: 2px;
    transition: all 0.3s;
}

/* Button sizes */
.btn-lg {
    font-size: 18px;
    padding: 14px 30px;
    min-height: 50px;
    font-weight: 600;
}

.btn-sm {
    font-size: 14px;
    padding: 8px 16px;
    min-height: 36px;
}

.btn-xs {
    font-size: 12px;
    padding: 6px 12px;
    min-height: 30px;
}

/* Button block */
.btn-block {
    width: 100%;
    display: block;
}

/* Primary buttons - more prominent */
.btn-primary {
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(60, 141, 188, 0.2);
    border-width: 2px;
}

.btn-primary:hover {
    box-shadow: 0 4px 8px rgba(60, 141, 188, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* All button variants */
.btn-success, .btn-danger, .btn-warning, .btn-info {
    font-weight: 500;
    border-width: 2px;
}

.btn-success:hover, .btn-danger:hover, .btn-warning:hover, .btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Buttons with icons */
.btn i {
    font-size: 16px;
    margin-right: 6px;
}

.btn-lg i {
    font-size: 18px;
    margin-right: 8px;
}

.btn-sm i {
    font-size: 14px;
    margin-right: 4px;
}

/* Button groups spacing */
.btn-group .btn {
    margin-right: 2px;
}

.btn-group-vertical .btn {
    margin-bottom: 2px;
}

/* Button flat variant */
.btn-flat {
    border-width: 2px;
}

/* ============================================
   4. TABLE SIZE IMPROVEMENTS
   ============================================ */

/* Table container */
.table {
    font-size: 15px;
    border-collapse: separate;
    border-spacing: 0;
}

/* Table cells - larger padding */
.table td, .table th {
    padding: 14px 12px;
    vertical-align: middle;
    line-height: 1.5;
}

/* Table headers */
.table thead th {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 12px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    color: #555;
}

/* Table body */
.table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Bordered tables */
.table-bordered {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
}

.table-bordered thead th {
    border-bottom: 2px solid #dee2e6;
}

/* Striped tables */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

/* Hover effect */
.table-hover tbody tr:hover {
    background-color: #e9ecef;
}

/* Responsive table wrapper */
.table-responsive {
    /* border: 2px solid #dee2e6; */
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 20px;
}

/* Table in boxes */
.box-body .table {
    margin-bottom: 0;
}

.box-body .table td, .box-body .table th {
    padding: 12px 10px;
}

/* Action buttons in tables */
.table .btn {
    padding: 6px 12px;
    font-size: 13px;
    margin: 0 2px;
    min-height: auto;
}

.table .btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}

/* Icons in tables */
.table i {
    font-size: 16px;
}

/* DataTables specific */
.dataTables_wrapper .table {
    font-size: 15px;
}

.dataTables_wrapper .table td, .dataTables_wrapper .table th {
    padding: 12px 10px;
}

/* ============================================
   5. BORDER IMPROVEMENTS
   ============================================ */

/* Box borders - more defined */
.box {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* Box header border */
.box-header.with-border {
    border-bottom: 2px solid #e0e0e0;
    padding: 15px;
}

.box-header {
    padding: 15px;
}

/* Box body */
.box-body {
    padding: 20px;
}

/* Box footer border */
.box-footer {
    border-top: 2px solid #e0e0e0;
    padding: 15px;
}

/* Form control borders */
.form-control {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #3c8dbc;
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(60, 141, 188, 0.1);
    outline: none;
}

/* Error state borders */
.has-error .form-control {
    border: 2px solid #dd4b39;
}

.has-error .form-control:focus {
    border-color: #dd4b39;
    box-shadow: 0 0 0 3px rgba(221, 75, 57, 0.1);
}

.has-success .form-control {
    border: 2px solid #00a65a;
}

.has-success .form-control:focus {
    border-color: #00a65a;
    box-shadow: 0 0 0 3px rgba(0, 166, 90, 0.1);
}

.has-warning .form-control {
    border: 2px solid #f39c12;
}

.has-warning .form-control:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

/* Input group borders */
.input-group .form-control {
    border-width: 2px;
}

.input-group-addon {
    border: 2px solid #ddd;
    border-radius: 5px;
}

/* Button borders */
.btn {
    border-width: 2px;
}

/* Panel borders */
.panel {
    border: 2px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.panel-heading {
    border-bottom: 2px solid #ddd;
    border-radius: 4px 4px 0 0;
}

.panel-body {
    padding: 20px;
}

/* Sidebar menu borders */
.sidebar-menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.treeview-menu {
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-left: 5px;
}

/* Sidebar gradient background */
.skin-blue .main-sidebar,
.skin-blue .left-side,
.skin-blue .wrapper {
    background: linear-gradient(180deg, #0b5ed7, #0a3fa8) !important;
    background-color: #0a3fa8 !important;
}

/* Sidebar active menu item styles */
.skin-blue .sidebar-menu > li.active > a {
    background: rgba(255, 255, 255, .15) !important;
    opacity: 1 !important;
    color: #ffffff !important;
}

.skin-blue .sidebar-menu > li:hover > a {
    background: rgba(255, 255, 255, .1) !important;
    color: #ffffff !important;
}

/* Submenu (treeview-menu) background and styles */
.skin-blue .sidebar-menu > li > .treeview-menu {
    background: rgba(0, 0, 0, .1) !important;
}

.skin-blue .treeview-menu > li.active > a,
.skin-blue .treeview-menu > li > a:hover {
    background: rgba(255, 255, 255, .15) !important;
    color: #ffffff !important;
}

.skin-blue .treeview-menu > li > a {
    background: transparent !important;
    color: #ffffff !important;
}

/* Sidebar font and icon colors - always white */
.skin-blue .sidebar a,
.skin-blue .sidebar-menu > li > a,
.skin-blue .sidebar-menu > li > a > span,
.skin-blue .treeview-menu > li > a,
.skin-blue .sidebar-menu > li.header {
    color: #ffffff !important;
}

/* Sidebar icons - always white */
.skin-blue .sidebar i,
.skin-blue .sidebar .fa,
.skin-blue .sidebar-menu > li > a > i,
.skin-blue .sidebar-menu > li > a > .fa,
.skin-blue .treeview-menu > li > a > i,
.skin-blue .treeview-menu > li > a > .fa,
.skin-blue .sidebar-menu > li > a > .pull-right > i,
.skin-blue .sidebar-menu > li > a > .pull-right > .fa {
    color: #ffffff !important;
}

/* User panel text - white */
.skin-blue .user-panel > .info,
.skin-blue .user-panel > .info > a,
.skin-blue .user-panel > .info > p {
    color: #ffffff !important;
}

/* Content header border */
.content-header {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
    padding: 20px 15px;
}

/* ============================================
   6. ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Increase general spacing */
.content {
    padding: 20px;
}

/* Form group spacing */
.form-group {
    margin-bottom: 20px;
}

/* Better focus indicators */
*:focus {
    outline: 2px solid #3c8dbc;
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid #3c8dbc;
    outline-offset: 2px;
}

.form-control:focus {
    outline: none;
}

/* Section spacing */
.section {
    margin-bottom: 30px;
}

/* Info boxes */
.info-box {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

.info-box-icon {
    border-radius: 4px 0 0 4px;
}

/* Small boxes */
.small-box {
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.1);
}

/* Callouts */
.callout {
    border-left-width: 5px;
    border-radius: 6px;
    padding: 18px 30px 18px 18px;
}

.callout h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Alerts */
.alert {
    border-width: 2px;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 15px;
}

/* Labels and badges */
.label, .badge {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Dropdown menus */
.dropdown-menu {
    border: 2px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 8px 0;
}

.dropdown-menu > li > a {
    padding: 10px 20px;
    font-size: 15px;
}

/* Modal borders */
.modal-content {
    border: 2px solid #ddd;
    border-radius: 6px;
}

.modal-header {
    border-bottom: 2px solid #e0e0e0;
    padding: 18px 20px;
}

.modal-body {
    padding: 20px;
    font-size: 15px;
}

.modal-footer {
    border-top: 2px solid #e0e0e0;
    padding: 15px 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

/* Pagination */
.pagination > li > a, .pagination > li > span {
    padding: 10px 15px;
    font-size: 15px;
    border-width: 2px;
    border-radius: 5px;
    margin: 0 2px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 6px;
}

.breadcrumb > li {
    font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Mobile font sizes */
    body {
        font-size: 15px;
    }
    
    h1, .h1 {
        font-size: 28px;
    }
    
    h2, .h2 {
        font-size: 24px;
    }
    
    h3, .h3 {
        font-size: 20px;
    }
    
    /* Mobile buttons */
    .btn {
        padding: 10px 16px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
        min-height: 46px;
    }
    
    /* Mobile tables */
    .table td, .table th {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    /* Mobile login - stack vertically */
    .login-wrapper {
        flex-direction: column;
        padding: 0;
    }
    
    .login-left-panel {
        width: 100%;
        height: 40vh;
        padding: 40px 30px;
    }
    
    .login-icon-large {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .login-main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .login-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .login-features {
        gap: 30px;
        padding-top: 20px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .login-footer-left {
        margin-top: 20px;
        padding-top: 15px;
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .version {
        text-align: center;
    }
    
    .login-right-panel {
        width: 100%;
        margin-left: 0;
        padding: 40px 25px;
        min-height: 60vh;
    }
    
    .panel-bd {
        padding: 35px 25px;
        max-width: 100%;
    }
    
    .header-title h3 {
        font-size: 24px;
    }
    
    .sso-buttons {
        flex-direction: column;
    }
    
    .sso-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .content {
        padding: 15px;
    }
    
    .box-body {
        padding: 15px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-group {
        width: 100%;
    }
    
    .btn-group .btn {
        width: auto;
        flex: 1;
    }
}

/* Print styles */
@media print {
    .btn {
        border-width: 1px;
    }
    
    .table {
        font-size: 12px;
    }
    
    .table td, .table th {
        padding: 8px 6px;
    }
}

.skin-blue .header-title .breadcrumb{
    bottom:auto !important;
}
