/* source: /bin/css/style.css */
/* author: keith@mentok.com */
/* update: 2025.1008.2131 create */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    padding: 20px;
}

/* --- File Folder Tab Styles --- */

.tab-container {
    border-bottom: 1px solid #ccc;
    display: flex;
    margin-bottom: 20px;
}

.tab {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-bottom: none; /* Make the bottom line disappear when active */
    border-radius: 5px 5px 0 0;
    padding: 10px 15px;
    margin-right: 5px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.tab.active {
    background-color: white;
    border-color: #ccc;
    border-bottom: 1px solid white; /* 'Lifts' the tab off the container line */
    margin-bottom: -1px; /* Overlap the container border */
}

/* Optional: Login/Registration specific layout */
#login-form-container, #register-form-container {
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    border-top: none; 
}