
       body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f1f1; /* Light background color */
    padding-top: 60px;
}



.header {
    background-color: #181818; /* Darker blue header */
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    display: flex;
    align-items: center; /* Center align items vertically */
    justify-content: flex-start; /* Align items to the left */
    position: fixed;
    width: 100%; /* Full width */
      top: 0; /* Position at the top */
    left: 0; /* Align to the left */
    z-index: 1000; /* Ensure it’s on top of other content */
}

a {
    
    cursor: pointer;
    text-decoration: none;
    
}

.logo img {
    width: 60px; /* Adjust logo size */
    height: 60px; /* Adjust logo size */
    border-radius: 50%;
    margin-right: 15px;
}

.clinic-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* Adjusted for header and footer */
    padding: 20px;
}

.login-form {
    background-color: #e7e7e7;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 360px; /* Increased width for modern look */
    margin: 20px;
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    font-size: 16px;
}

.login-form button {
    background-color: #54616d;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form button:hover {
    background-color: #647382; /* Darker shade on hover */
}

.footer {
    background-color: #181818; /* Dark gray footer */
    color: #e0e0e0;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.show-doctor-login {
    display: block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #54616d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.show-doctor-login:hover {
    background-color: #647382;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .login-form {
        width: 90%;
    }
}
    
.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}
.active {
    background-color: green; /* Green dot for active connection */
}
.inactive {
    background-color: red; /* Red dot for inactive connection */
}

.error-message {
    color: red;
    background-color: #ffe6e6;
    padding: 10px;
    border: 1px solid red;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}