@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: #f4f4f9;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.bold_title {
    font-weight: bold;
}

.card {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
}

.container-fluid {
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.left_panel {
    background-color: #2C3E50;
    color: white;
    padding: 20px;
    text-align: center;
}

.right_panel {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

.header_title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.8rem;
    color: white;
}

.footer_title {
    font-size: 11px;
    color: #7F8C8D;
}

.custom_font1 {
    font-size: 26px;
    color: #2C3E50;
}

.custom_font2 {
    font-size: 14px;
    color: #7F8C8D;
}

.button_group button {
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 15px;
}

.admin_button {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    border: none;
    border-radius: 8px;
    color: white;
    margin-bottom: 10px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(26, 188, 156, 0.2);
}

.admin_button:hover {
    background: linear-gradient(135deg, #16A085 0%, #1ABC9C 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(26, 188, 156, 0.3);
}


.emp_button {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
    border: none;
    border-radius: 8px;
    color: #2C3E50;
    margin-bottom: 10px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(189, 195, 199, 0.2);
}

.emp_button:hover {
    background: linear-gradient(135deg, #BDC3C7 0%, #ECF0F1 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(189, 195, 199, 0.3);
}

