
/* Main styles */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-brand img {
    margin-right: 10px;
}

.table th, .table td {
    vertical-align: middle;
}

/* Password container styling */
.password-container {
    display: flex;
    align-items: center;
}

.password-field {
    max-width: 150px;
    margin-right: 5px;
    letter-spacing: 2px;
    font-family: monospace;
}

.toggle-password-btn, .copy-btn {
    padding: 0.25rem 0.5rem;
    margin-left: 2px;
}

/* Card and form styling */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-header {
    border-bottom: none;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Dashboard styling */
#accountsTable {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#accountsTable thead {
    background-color: #0d6efd;
    color: white;
}

#accountsTable th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .password-field {
        max-width: 100px;
    }
    
    .btn-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .table td, .table th {
        padding: 0.5rem;
    }
}

/* Custom styles for the logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-container img, .navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}
