html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}




/*home css*/

.home-container {
    padding: 40px;
    text-align: center;
}

.home-hero {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

    .home-hero h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .home-hero p {
        font-size: 18px;
        margin-bottom: 20px;
    }

.home-btn {
    padding: 12px 20px;
    background: white;
    color: #0d6efd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

    .home-btn:hover {
        background: #f0f0f0;
    }

.home-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .feature-box h3 {
        margin-bottom: 10px;
    }

    .feature-box p {
        color: #666;
    }

@media (max-width: 768px) {
    .home-features {
        grid-template-columns: 1fr;
    }
}

/*dashboard css*/

.dashboard-page {
    padding: 30px;
    background-color: #f4f6f9;
    min-height: 80vh;
}

.dashboard-header {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .dashboard-header h2 {
        margin: 0;
        font-size: 28px;
        color: #222;
    }

    .dashboard-header p {
        margin: 8px 0 0;
        color: #666;
    }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .dashboard-card:hover {
        transform: translateY(-5px);
    }

    .dashboard-card h3 {
        margin-bottom: 10px;
        color: #222;
    }

    .dashboard-card p {
        color: #666;
        min-height: 45px;
    }

.dashboard-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    .dashboard-btn:hover {
        color: white;
        opacity: 0.9;
    }

.blue-btn {
    background-color: #0d6efd;
}

.green-btn {
    background-color: #198754;
}

.sky-btn {
    background-color: #0dcaf0;
}

.yellow-btn {
    background-color: #ffc107;
    color: #000;
}

.red-btn {
    background-color: #dc3545;
}

.admin-card {
    border-left: 5px solid #ffc107;
}

.manager-card {
    border-left: 5px solid #dc3545;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/*Login Page*/

h2 {
    margin-top: 40px;
    font-weight: 600;
}
.login-container {
    width: 350px;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
}

    .form-control:focus {
        border-color: #007bff;
        outline: none;
    }

.btn-login {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

    .btn-login:hover {
        background: #0056b3;
    }

.error-message {
    margin-top: 10px;
    color: red;
    text-align: center;
    font-size: 14px;
}