/* Soft Theme */
body {
    background-color: #ffffff !important;
    color: #555555 !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    min-height: 100vh !important;
    background-image: none !important;
}

.login-container {
    background-color: transparent !important;
    color: #555555 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding-top: 50px !important;
}

.login-title {
    color: #333333 !important;
    font-weight: 300 !important;
    text-transform: none !important;
    letter-spacing: 1px !important;
    text-shadow: none !important;
    font-size: 2.5em !important;
    margin-bottom: 40px !important;
}

.terminals-grid-container {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.terminals-grid-container #dashboard-table {
    background-color: transparent !important;
    color: #555555 !important;
}

.terminals-grid-container #dashboard-table th {
    background-color: #f9f9f9 !important;
    color: #777777 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    font-size: 0.85em !important;
    letter-spacing: 0.5px !important;
}

.terminals-grid-container #dashboard-table td {
    border-bottom: 1px solid #f0f0f0 !important;
    color: #555555 !important;
}

.terminals-grid-container #dashboard-table tbody tr:hover {
    background-color: #fcfcfc !important;
}

.server-info {
    background-color: #f9f9f9 !important;
    border: 1px solid #e0e0e0 !important;
    color: #777777 !important;
    border-radius: 6px !important;
    font-size: 0.9em !important;
}

.server-info p {
    color: #777777 !important;
}

.login-form {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    padding: 20px !important;
}

.login-input {
    background-color: #f9f9f9 !important;
    border: 1px solid #e0e0e0 !important;
    color: #333333 !important;
    border-radius: 6px !important;
    padding: 12px !important;
    font-weight: normal !important;
    transition: all 0.2s ease !important;
}

.login-input:focus {
    border-color: #b0b0b0 !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05) !important;
}

.login-button {
    background-color: #f0f0f0 !important;
    border: 1px solid #d0d0d0 !important;
    color: #555555 !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    transition: all 0.2s ease !important;
}

.login-button:hover {
    background-color: #e0e0e0 !important;
    color: #333333 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
}

.secure-login-button {
    background-color: #333333 !important;
    color: #ffffff !important;
    border: 1px solid #333333 !important;
}

.secure-login-button:hover {
    background-color: #555555 !important;
    border-color: #555555 !important;
    color: #ffffff !important;
}

/* Activity Colors */
#dashboard-table tbody tr.user1-active {
    background-color: rgba(124, 154, 146, 0.1) !important; /* Soft muted teal */
    color: #4a6b63 !important;
    font-weight: 500 !important;
}

#dashboard-table tbody tr.user2-active {
    background-color: rgba(188, 180, 180, 0.1) !important; /* Soft warm gray */
    color: #7d7575 !important;
    font-weight: 500 !important;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bbb; 
}
