@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Login Page Style */
.login-body {
    background: linear-gradient(135deg, #0079c1 0%, #005a91 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

/* Dashboard Style */
.navbar-custom {
    background-color: #0079c1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #0079c1;
    border-color: #0079c1;
}

.btn-primary:hover {
    background-color: #005a91;
}

.img-card {
    height: 180px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1055;
}