/* Global Styles */
body {
    background-color: #F0F4F8;
    /* Light gray-blue background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Card Container */
.login-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 380px;
    text-align: center;
}

/* Logo Section */
.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 180px;
    /* Adjust size based on actual logo */
    height: auto;
}

/* User Photo Placeholder (Requested: "loguito donde este la foto de usuario")
   Since we don't have user photos yet, we'll put the logo prominent at top.
*/

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4B5563;
    font-weight: 500;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-sizing: border-box;
    /* Fix padding expanding width */
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #2D9CDB;
    /* Primary Blue from Logo */
}

/* Button */
.btn-login {
    width: 100%;
    padding: 0.75rem;
    background-color: #2D9CDB;
    /* VISOR DATA BLUE */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #1A85C3;
    /* Slightly darker */
}

/* Dashboard Styles (Simple for now) */
.dashboard-container {
    width: 100%;
    height: 100vh;
    padding: 20px;
    background-color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #F0F4F8;
    padding-bottom: 15px;
}

.logout-link {
    color: #FF6B8B;
    /* VISOR DATA PINK */
    text-decoration: none;
    font-weight: bold;
}

/* Action Buttons */
.btn-action {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-right: 5px;
}

.edit {
    background-color: #2D9CDB;
    /* VISOR DATA BLUE */
    color: white;
}

.edit:hover {
    background-color: #1A85C3;
}

.delete {
    background-color: #FF6B8B;
    /* VISOR DATA PINK */
    color: white;
}

.delete:hover {
    background-color: #E05A75;
}