/* Custom styles */
.content-header {
    padding: 15px 0.5rem;
}

.content-header h1 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

/* Card styles */
.card {
    margin-bottom: 1rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Table styles */
.table thead th {
    border-bottom: 2px solid #dee2e6;
}

.table td, .table th {
    vertical-align: middle;
}

/* Button styles */
.btn {
    margin-right: 0.25rem;
}

.btn:last-child {
    margin-right: 0;
}

/* Alert styles */
.alert {
    margin-bottom: 1rem;
}

/* Dashboard stats */
.small-box {
    margin-bottom: 1rem;
}

/* Profile image */
.profile-user-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* User info in navbar */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-info .font-weight-bold {
    font-size: 0.9rem;
    line-height: 1.2;
}

.user-info .small {
    font-size: 0.75rem;
    line-height: 1.2;
}

/* User panel in sidebar */
.user-panel {
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
}

.user-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.user-panel .info {
    overflow: hidden;
}

.user-panel .info a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.user-panel .info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* Custom Sidebar */
.custom-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.custom-sidebar .brand-link {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-sidebar .nav-sidebar .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin: 5px 10px;
    transition: all 0.3s ease;
}

.custom-sidebar .nav-sidebar .nav-item .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.custom-sidebar .nav-sidebar .nav-item .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
}

.custom-sidebar .nav-sidebar .nav-item .nav-link i {
    color: rgba(255, 255, 255, 0.8);
}

.custom-sidebar .nav-sidebar .nav-item .nav-link.active i {
    color: #fff;
}

/* Login page */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 360px;
    margin: 0 auto;
}

.login-box .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-box .card-header {
    background: transparent;
    border-bottom: none;
    padding: 20px;
}

.login-box .card-header a {
    font-size: 2.5rem;
    color: #764ba2;
    text-decoration: none;
}

.login-box .card-header h4 {
    font-size: 1.2rem;
    color: #764ba2;
    margin: 10px 0 0;
}

.login-box .card-body {
    padding: 20px;
}

.login-box .login-box-msg {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.login-box .input-group {
    margin-bottom: 15px;
}

.login-box .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.login-box .form-control {
    border-color: #ced4da;
    padding: 10px 15px;
}

.login-box .form-control:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 0.2rem rgba(118, 75, 162, 0.25);
}

.login-box .btn-primary {
    background-color: #764ba2;
    border-color: #764ba2;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-box .btn-primary:hover {
    background-color: #667eea;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-box .signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background-color: #764ba2;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-box .signin-btn i {
    margin-right: 10px;
}

.login-box .icheck-primary label {
    color: #6c757d;
}

.login-box .social-auth-links {
    margin-top: 20px;
    text-align: center;
}

.login-box .social-auth-links .btn-link {
    color: #764ba2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-box .social-auth-links .btn-link:hover {
    color: #667eea;
    text-decoration: none;
}

.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-header h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
} 