﻿/* Content/login.css */
body {
    background: #e8f0fe;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 25px;
    }

    .login-container label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    .login-container input[type="text"],
    .login-container input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .login-container button {
        width: 100%;
        padding: 10px;
        background-color: #1976d2;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .login-container button:hover {
            background-color: #1565c0;
        }

    .login-container .error {
        color: red;
        text-align: center;
        margin-top: 10px;
    }

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: -5px;
    margin-bottom: 10px;
    display: block;
}

.admin-dashboard {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    border: 1px solid #999;
    border-radius: 5px;
    font-family: 'Segoe UI', sans-serif;
    background-color: white;
}

.dashboard-header {
    background-color: #2980b9;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dashboard-header .title {
        font-size: 20px;
        font-weight: bold;
    }

    .dashboard-header .user-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.dashboard-content {
    padding: 20px;
}

.section-title {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.action-buttons 
{
    margin-bottom: 20px;
    gap: 10px;
}

.action-buttons button 
{
    margin-right: 20px;
    padding: 5px 10px;
    background-color: #3498db;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.action-buttons button:hover
{
    background-color: #217dbb;
}

.form-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.recipients-section {
    flex: 1;
}


.checkbox-columns 
{
    display: flex;
    gap: 40px;
}

.column label {
    display: block;
    margin-bottom: 20px !important;
    font-weight: normal;
}
.message-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.message-section textarea {
    width: 100%;
    height: 165px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    resize: none;
    max-width: 450px !important;
}

.send-btn {
    padding: 10px 20px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

    .send-btn:hover {
        background-color: #1b5e20;
    }

.user-status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    vertical-align: middle;
}

.online-dot {
    background-color: green;
}

.offline-dot {
    background-color: red;
}

.toast-top-center {
    top: 55px !important;
}