body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: auto;
}

/* Landing Page with Split Layout */
.landing-split {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?office,corporate') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.landing-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
    align-items: center;
}

.landing-content {
    flex: 1;
    color: white;
    padding-right: 20px;
}

.login-container {
    flex: 0 0 400px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.company-brand {
    margin-bottom: 40px;
}

.company-logo {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.company-tagline {
    font-size: 18px;
    color: #e0e0e0;
    font-weight: 300;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    background-color: rgba(52, 152, 219, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: #3498db;
    font-size: 20px;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    color: white;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-header p {
    color: #7f8c8d;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding-left: 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.email-domain {
    display: flex;
    align-items: center;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 14px;
}

.email-domain span {
    margin-left: 5px;
}

.btn-submit {
    background-color: #3498db;
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.error-message {
    color: #e74c3c;
    text-align: center;
    margin-top: 15px;
    display: none;
    padding: 10px;
    background-color: #fadbd8;
    border-radius: 4px;
    border-left: 4px solid #e74c3c;
}

.support-info {
    margin-top: 30px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.support-email {
    color: #3498db;
    text-decoration: none;
}

.support-email:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-container {
    padding: 20px;
    min-height: calc(100vh - 100px);
}

.dashboard-section {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    background-color: #f9f9f9;
    position: relative;
}

.dashboard-section h3 {
    margin-top: 0;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-actions {
    display: flex;
    gap: 10px;
}

.btn-edit, .btn-save, .btn-cancel-edit, .btn-add {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
}

.btn-save {
    background-color: #2ecc71;
}

.btn-cancel-edit {
    background-color: #e74c3c;
}

.btn-add {
    background-color: #9b59b6;
}

.task-item, .meeting-item, .schedule-item {
    padding: 10px;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-content {
    flex-grow: 1;
}

.item-actions {
    display: flex;
    gap: 5px;
}

.btn-edit-item, .btn-delete {
    background: none;
    border: none;
    cursor: pointer;
    color: #7f8c8d;
    font-size: 14px;
}

.btn-edit-item:hover {
    color: #3498db;
}

.btn-delete:hover {
    color: #e74c3c;
}

.task-item:last-child, .meeting-item:last-child, .schedule-item:last-child {
    border-bottom: none;
}

.task-high-priority {
    border-left: 4px solid #e74c3c;
}

.task-medium-priority {
    border-left: 4px solid #f39c12;
}

.task-low-priority {
    border-left: 4px solid #2ecc71;
}

.hours-summary {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hours-card {
    background-color: white;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    margin: 0 10px;
    min-width: 150px;
    position: relative;
}

.hours-card h4 {
    margin-top: 0;
    color: #7f8c8d;
}

.hours-value {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.logout-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: auto;
}

.employee-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.employee-details {
    display: flex;
    align-items: center;
}

.employee-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.hidden {
    display: none;
}

/* Edit Form Styles */
.edit-form {
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input, .form-row select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

/* Clock In/Out Styles */
.clock-status {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.clocked-in {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.clocked-out {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-clock-in {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-clock-out {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.btn-timesheet {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

/* Timesheet Modal Styles */
.timesheet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.timesheet-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.timesheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
}

.timesheet-table {
    width: 100%;
    border-collapse: collapse;
}

.timesheet-table th, .timesheet-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e7e7e7;
}

.timesheet-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.timesheet-table tr:hover {
    background-color: #f5f5f5;
}

.total-hours {
    font-weight: bold;
    text-align: right;
    margin-top: 15px;
    font-size: 16px;
}

/* Additional dashboard content to enable scrolling */
.dashboard-extra-content {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e7e7e7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .landing-content {
        padding-right: 0;
        text-align: center;
    }
    
    .login-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .feature-item {
        justify-content: center;
        text-align: left;
    }
    
    .support-info {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 20px;
    }
    
    .hours-summary {
        flex-direction: column;
    }
    
    .hours-card {
        margin: 10px 0;
    }
    
    .employee-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logout-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .timesheet-content {
        width: 95%;
        padding: 15px;
    }
    
    .timesheet-table {
        font-size: 14px;
    }
}