/*
Theme Name: Qafila Accounts Lite
Author: Custom Build
Description: A super lightweight custom theme for the Qafila Accounts portal.
Version: 1.0
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

* {
    box-sizing: border-box;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-btn {
    text-decoration: none;
    background: #004085;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.header-btn:hover {
    background: #002752;
    color: #ffffff;
}

/* Main Content Area */
.site-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 70vh;
}

/* Homepage specific styles */
.home-container {
    text-align: center;
    margin-top: 8vh;
}

.home-container h1 {
    font-size: 2.5rem;
    color: #004085;
    margin-bottom: 40px;
}

.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.home-btn {
    text-decoration: none;
    background: #0073aa;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
}

.home-btn:hover {
    background: #005177;
    transform: translateY(-3px);
    color: #ffffff;
}