﻿body {
}
.employee-page {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    padding-top: 40px;
    background: #f5f7fa;
}

.employee-card {
    width: 520px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

    .employee-card h2 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
    }

.employee-btn {
    width: 100%;
    padding: 11px;
    background: #0d6efd;
    border: none;
    color: white;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
}

    .employee-btn:hover {
        background: #0b5ed7;
    }