/* public/css/custom.css */
/* Custom CSS for HMS */
html,
body {
    height: 100%;
    background-color: #f4f7f9; /* Light Ash */
}

.btn-aqua {
    background-color: #00ffff;
    color: #000;
}
.btn-aqua:hover {
    background-color: #00cccc;
}

/* Centered form container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card styling */
.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
    background: #2c3e50;
}
.sidebar a {
    color: #bdc3c7;
}
.sidebar a.active {
    background: #17a2b8; /* Bootstrap info */
    color: #fff;
}

/* PDF Content Styling */
#pdf-content {
    background-color: #fff !important;
    color: #000;
}

/* Action Buttons Container */
.pdf-action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Dashboard helper styles (append) */
.sidebar {
    width: 220px;
    height: 100vh;
    background: #2c3e50;
    color: #ecf0f1;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
.main-content {
    margin-left: 220px;
    padding: 28px 30px;
    min-height: 100vh;
    background: #f4f7f9;
}
.sidebar .sidebar-nav a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin: 8px 0;
    padding: 8px 10px;
    border-left: 3px solid transparent;
    border-radius: 4px;
    font-weight: 600;
}
.sidebar .sidebar-nav a.active,
.sidebar .sidebar-nav a:hover {
    background: #34495e;
    color: #fff;
    border-left-color: #17a2b8;
}
@media (max-width: 767px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 12px;
    }
    .main-content {
        margin-left: 0;
        padding: 16px;
    }
    .sidebar .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .sidebar .sidebar-nav a {
        padding: 6px 8px;
        font-size: 0.95rem;
    }
}
