/* BEODOCS Custom Styles - Matching Bakels Edible Oils Design */

:root {
    --primary-dark: #2c3e50;
    --primary-light: #34495e;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #fef9e7;
    --panel-bg: #fefefe;
    --active-bg: #2c3e50;
    --active-text: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* 4-corner gradient with fixed corner colors */
    background: 
        radial-gradient(circle at top left, #e3e4e8 0%, transparent 60%),
        radial-gradient(circle at top right, #ece8d2 0%, transparent 60%),
        radial-gradient(circle at bottom left, #eeeada 0%, transparent 60%),
        radial-gradient(circle at bottom right, #fcf3ca 0%, transparent 60%),
        #f0e8d9; /* center color - blend of all corners */
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header/Navigation Bar */
.app-header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-divider {
    width: 1px;
    height: 40px;
    background-color: #d0d0d0;
    margin: 0 1rem;
}

.logo-app {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-dark);
    background-color: #ffffff;
    border-radius: 30px;
}

.nav-link.active {
    background-color: var(--active-bg);
    color: var(--active-text);
    border-radius: 30px;
}

/* User Controls */
.user-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 0.25rem 0.75rem;
}

.icon-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-button:hover {
    background-color: #ffffff;
    color: var(--text-dark);
}

.icon-button svg {
    width: 20px;
    height: 20px;
}

/* Main Content Area */
.main-content {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-panel {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-divider {
        display: none;
    }
}
