.top-bar {
    width: 100%;
    height: 60px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #45a049;
    }

.button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.button:active {
    background-color: #004080;
    transform: translateY(0);
}

.button-danger {
    background-color: #dc3545;
}

.button-danger:hover {
    background-color: #c82333;
}

.home-body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #333;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 60px;
    margin: 0;
    box-sizing: border-box;
}

.body-login {
    font-family: Arial, sans-serif;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.home-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.home-button:active {
    background-color: #1c6e99;
    transform: translateY(0);
}

.client-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px 0;
    transition: box-shadow 0.3s ease;
}

.client-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.client-name {
    font-size: 18px;
    font-weight: bold;
}

.toggle-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.toggle-button:hover {
    background-color: #45a049;
}

input::placeholder {
    color: #999;
    }

.info {
    display: none;
    margin-top: 10px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
}

.client-section h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4CAF50;
}

.client-section p {
    margin: 0 0 8px;
    font-size: 14px;
}

form {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    }

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    }

hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
}
