* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a1a; /* Light black background */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #2d2d2d;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-form {
    width: 100%;
}

h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
}

.subtitle {
    color: #b3b3b3;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #404040;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: #333333;
    color: #ffffff;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #4a90e2;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #357abd;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #4a90e2;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 10px;
}

.google-login-button {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.google-login-button:hover {
    background-color: #f5f5f5;
}

.google-login-button img {
    width: 18px;
    height: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    
    .left-section {
        min-height: 200px;
    }
    
    .right-section {
        padding: 20px;
    }
}

/* Workshop Page Styles */
.workshop-header {
    background-color: #1b5e20; /* Reverted to original green */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.profile-menu {
    position: relative;
}

.profile-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.profile-icon .material-icons {
    font-size: 36px;
    color: #666;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    display: none;
    margin-top: 10px;
}

.profile-menu:hover .profile-dropdown {
    display: block;
}

.profile-info {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-info .material-icons {
    font-size: 40px;
    color: #666;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 500;
    color: #333;
    margin: 0;
}

.user-email {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li.divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
    border: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.dropdown-menu .material-icons {
    font-size: 20px;
    margin-right: 10px;
    color: #666;
}

.workshop-content {
    flex: 1;
    margin-left: 250px;
    padding: 20px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.projects-grid {
    width: 100%;
}

/* Workshop Layout */
.workshop-container {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #1b5e20; /* Dark green background */
    border-right: 1px solid #2e7d32;
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
}

.sidebar-profile {
    padding: 20px;
    border-top: 1px solid #2e7d32;
}

.sidebar-profile .profile-menu {
    position: relative;
}

.sidebar-profile .profile-icon {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    position: relative;
    color: #ffffff;
}

.sidebar-profile .profile-icon:hover {
    background-color: #2e7d32;
}

.sidebar-profile .profile-icon .material-icons {
    font-size: 24px;
    margin-right: 12px;
    color: #ffffff;
}

.sidebar-profile .profile-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    display: none;
    margin-bottom: 10px;
    z-index: 1000;
}

.sidebar-profile .profile-menu:hover .profile-dropdown {
    display: block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 5px;
}

.menu-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.menu-item a:hover {
    background-color: #2e7d32;
}

.menu-item.active a {
    background-color: #2e7d32;
    color: #ffffff;
}

.menu-item.active .material-icons {
    color: #ffffff;
}

.menu-item .material-icons {
    font-size: 20px;
    margin-right: 12px;
    color: #ffffff;
}

.menu-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }
    
    .menu-text,
    .sidebar-profile .menu-text {
        display: none;
    }
    
    .menu-item a {
        justify-content: center;
        padding: 12px;
    }
    
    .menu-item .material-icons {
        margin-right: 0;
    }
    
    .sidebar-profile .profile-icon {
        justify-content: center;
        padding: 12px;
    }
    
    .sidebar-profile .profile-icon .material-icons {
        margin-right: 0;
    }
    
    .sidebar-profile .profile-dropdown {
        left: auto;
        right: 0;
    }
    
    .workshop-content {
        margin-left: 60px;
    }
}

/* Workshop Content Styles */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content-header h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #f5f5f5;
}

.view-btn.active {
    background-color: #e3f2fd;
    color: #1976d2;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-icon {
    font-size: 32px;
    color: #1976d2;
}

.action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: #f5f5f5;
}

.project-content h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.project-description {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.project-meta .material-icons {
    font-size: 16px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active {
    background-color: #e3f2fd;
    color: #1976d2;
}

.project-card.add-new {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    cursor: pointer;
}

.project-card.add-new:hover {
    background-color: #e3f2fd;
    border-color: #1976d2;
}

.add-project-content {
    text-align: center;
    color: #666;
}

.add-project-content .material-icons {
    font-size: 48px;
    margin-bottom: 10px;
    color: #1976d2;
}

.add-project-content h3 {
    margin: 0;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Project Mapping Page Styles */
.project-container {
    display: flex;
    height: calc(100vh - 180px); /* Adjusted for top bar height */
    margin-top: 180px; /* Adjusted for top bar height */
}

/* Drawing Tools in Top Bar */
.drawing-tools {
    background-color: #2e7d32; /* Reverted to original green */
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #1b5e20 #2e7d32; /* Reverted scrollbar colors */
}

.drawing-tools::-webkit-scrollbar {
    height: 6px;
}

.drawing-tools::-webkit-scrollbar-track {
    background: #2e7d32;
    border-radius: 3px;
}

.drawing-tools::-webkit-scrollbar-thumb {
    background-color: #1b5e20;
    border-radius: 3px;
}

.tools-section {
    background-color: #1b5e20; /* Reverted to original green */
    border-radius: 8px;
    padding: 10px;
    min-width: fit-content;
}

.tools-section h3 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.tools-grid {
    display: flex;
    gap: 8px;
}

.tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border: 1px solid #388e3c; /* Reverted border color */
    border-radius: 6px;
    background: none;
    cursor: pointer;
    transition: all 0.3s;
    color: #ffffff;
    min-width: 60px;
}

.tool-btn:hover {
    background-color: #388e3c; /* Reverted hover color */
    border-color: #388e3c;
}

.tool-btn.active {
    background-color: #388e3c; /* Reverted active color */
    border-color: #388e3c;
    color: #ffffff;
}

.tool-btn .material-icons {
    font-size: 20px;
    margin-bottom: 4px;
    color: #ffffff;
}

.tool-btn span {
    font-size: 12px;
    color: #ffffff;
}

/* Layers List in Top Bar */
.layers-list {
    display: flex;
    gap: 8px;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff;
    background-color: #1b5e20; /* Reverted to original green */
    white-space: nowrap;
}

.layer-item:hover {
    background-color: #388e3c; /* Reverted hover color */
}

.layer-item input[type="checkbox"] {
    margin: 0;
}

.layer-item .material-icons {
    font-size: 16px;
    color: #ffffff;
}

/* Map Area */
.map-area {
    flex: 1;
    position: relative;
    background-color: #f5f5f5;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}

/* Navigation Tools */
.navigation-tools {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.compass {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.compass-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #1976d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass .material-icons {
    color: #1976d2;
    font-size: 24px;
}

.scale-bar {
    background-color: white;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scale-line {
    width: 100px;
    height: 2px;
    background-color: #333;
    margin-bottom: 4px;
}

.scale-bar span {
    font-size: 12px;
    color: #333;
}

/* Project Actions */
.project-actions {
    display: flex;
    gap: 10px;
}

.project-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border: 1px solid #2e7d32; /* Reverted border color */
    border-radius: 4px;
    background-color: #2e7d32; /* Reverted to original green */
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.project-actions .action-btn:hover {
    background-color: #388e3c; /* Reverted hover color */
    border-color: #388e3c;
}

.project-actions .action-btn .material-icons {
    font-size: 18px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .drawing-tools {
        padding: 8px;
    }

    .tools-section {
        padding: 8px;
    }

    .tool-btn {
        padding: 6px;
        min-width: 50px;
    }

    .tool-btn .material-icons {
        font-size: 18px;
    }

    .tool-btn span {
        font-size: 10px;
    }

    .layer-item {
        padding: 4px 8px;
    }

    .layer-item span:not(.material-icons) {
        display: none;
    }
}

/* Leaflet Map Custom Styles */
.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
}

/* Custom marker styles */
.custom-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1976d2;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-marker .material-icons {
    font-size: 16px;
}

/* Leaflet popup styles */
.leaflet-popup-content-wrapper {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 8px;
    font-size: 14px;
}

.leaflet-popup-tip {
    background-color: white;
}

/* Leaflet control styles */
.leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leaflet-control-zoom a {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}

.leaflet-control-zoom a:hover {
    background-color: #f5f5f5;
}

/* Leaflet draw control styles */
.leaflet-draw-tooltip {
    background-color: white;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.leaflet-draw-tooltip-single {
    margin-top: -12px;
}

.leaflet-draw-tooltip-subtext {
    color: #666;
}

/* Leaflet attribution control */
.leaflet-control-attribution {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 12px;
}

/* Active Projects Container */
.active-projects-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.active-projects-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: #2e7d32 #1b5e20;
}

.active-projects-scroll::-webkit-scrollbar {
    height: 6px;
}

.active-projects-scroll::-webkit-scrollbar-track {
    background: #1b5e20;
    border-radius: 3px;
}

.active-projects-scroll::-webkit-scrollbar-thumb {
    background-color: #2e7d32;
    border-radius: 3px;
}

.project-card.active {
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 auto;
    background-color: #1b5e20;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card.active:hover {
    background-color: #2e7d32;
    transform: translateY(-2px);
}

.project-card.active .project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.project-card.active .project-icon {
    font-size: 24px;
    color: #ffffff;
}

.project-card.active h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.project-card.add-new {
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b5e20;
    border: 2px dashed #2e7d32;
    border-radius: 6px;
    cursor: pointer;
    height: 80px;
    transition: all 0.3s ease;
}

.project-card.add-new:hover {
    background-color: #2e7d32;
    border-color: #388e3c;
}

.project-card.add-new .add-project-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card.add-new .material-icons {
    font-size: 24px;
    color: #ffffff;
}

/* Empty State */
.active-projects-scroll:empty::before {
    content: 'No active projects';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    background-color: #1b5e20;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .workshop-content {
        margin-left: 60px;
    }
    
    .project-card.active,
    .project-card.add-new {
        min-width: 150px;
        max-width: 150px;
    }
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 250px;
    right: 0;
    height: 300px;
    min-height: 100px;
    max-height: calc(100vh - 100px);
    background-color: #1b5e20;
    border-top: 1px solid #2e7d32;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: height 0.1s ease;
}

.resize-handle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #2e7d32;
    cursor: ns-resize;
    transition: background-color 0.3s;
}

.resize-handle:hover {
    background-color: #4caf50;
}

.resize-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background-color: #4caf50;
    border-radius: 1px;
}

.bottom-tabs {
    display: flex;
    gap: 2px;
    background-color: #2e7d32;
    padding: 5px 5px 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.tab-btn:hover {
    background-color: #388e3c;
}

.tab-btn.active {
    background-color: #1b5e20;
}

.tab-btn .material-icons {
    font-size: 18px;
}

.bottom-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1b5e20;
    display: none;
    flex-direction: column;
}

.tab-panel.active {
    display: flex;
}

/* Attributes Panel */
.attributes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #2e7d32;
}

.attributes-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
}

.attributes-actions {
    display: flex;
    gap: 10px;
}

.action-btn.small {
    padding: 4px 8px;
    font-size: 12px;
}

.attributes-table {
    flex: 1;
    overflow: auto;
    padding: 15px;
}

.attributes-table table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.attributes-table th,
.attributes-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #2e7d32;
}

.attributes-table th {
    background-color: #2e7d32;
    font-weight: 500;
}

.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.icon-btn:hover {
    background-color: #388e3c;
}

.icon-btn .material-icons {
    font-size: 16px;
}

/* Terminal Panel */
.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #2e7d32;
}

.terminal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
}

.terminal-actions {
    display: flex;
    gap: 10px;
}

.terminal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #1a1a1a;
    font-family: 'Consolas', monospace;
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    color: #ffffff;
    margin-bottom: 10px;
}

.terminal-line {
    margin: 0;
    padding: 2px 0;
    font-size: 14px;
}

.terminal-input {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.terminal-input .prompt {
    color: #4caf50;
}

.terminal-input input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    padding: 4px;
}

.terminal-input input:focus {
    outline: none;
}

/* Adjust map area for bottom bar */
.map-area {
    margin-bottom: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bottom-bar {
        left: 60px;
    }
    
    .tab-btn span:not(.material-icons) {
        display: none;
    }
    
    .tab-btn {
        padding: 8px;
    }
}

/* Guest Login */
.guest-login {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
}

.guest-text {
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 15px;
}

.guest-button {
    width: 100%;
    padding: 14px;
    background-color: #1b5e20;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guest-button:hover {
    background-color: #2e7d32;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.guest-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guest-button .material-icons {
    font-size: 20px;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guest-button {
        padding: 12px;
        font-size: 14px;
    }
    
    .guest-text {
        font-size: 13px;
    }
}

/* Error Message */
.error-message {
    color: #ff5252;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    display: none;
}

.error-message.show {
    display: block;
} 