/* === HEADER === */
.custom-header {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 14px 28px; /* 🌟 Creates nice space top & sides */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #28a745;
    text-align: center;
    margin: 0 auto;
}

/* === PROFILE ICON === */
.profile-icon {
    text-decoration: none;
    margin-right: 8px; /* 🌟 Adds small space from edge */
    transition: transform 0.2s ease;
}

.profile-icon:hover {
    transform: scale(1.1);
}

/* === BODY === */
.dashboard-body {
    background-color: #f8f9fa;
    min-height: 90vh;
    padding-top: 80px;
}

.list-group-item a:hover {
    color: #28a745;
}

.card {
    border-radius: 10px;
}







/* ✅ Common Sign-In Page Styling for Digital_Menu and similar projects */
body {
    background: #f9fafb;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.signin-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 450px;
    margin: 0 auto;
}

h2.title {
    font-weight: 700;
    color: #198754; /* Bootstrap green */
}

.btn-success {
    background-color: #198754;
    border: none;
}

.btn-success:hover {
    background-color: #157347;
}

.explanation-section {
    background: #ffffff;
    border-radius: 8px;
    margin-top: 3rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.explanation-section h3 {
    color: #0d6efd;
    font-weight: 600;
}

.step {
    text-align: left;
    margin-bottom: 1.5rem;
}

.step-number {
    background: #198754;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 8px;
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: #6c757d;
    font-size: 0.9rem;
}
