body {
    margin: 0;
}

.animated-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #0060af;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: revealText 3s ease forwards;
    margin: 0 auto;
    padding: 0;
}

@keyframes revealText {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.container-fluid {
    padding: 0;
}

.card {
    height: 450px;
}

.card-img-container {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image {
    width: 100%;
    object-fit: contain;
}

.transition-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .transition-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0060af;
}

.card-body {
    padding-top: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
}

h6 {
    color: #003663;
}

/* Updated Dashboard Container */
.dashboard-wrapper {
    display: flex;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    min-height: 100vh;
}

/* Sidebar Styling */
.dashboard-sidebar {
    width: 250px;
    background-color: #1c1c1c;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.dashboard-sidebar-header {
    text-align: center;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 24px;
    color: #00d4ff;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
}

.dashboard-item {
    margin-bottom: 15px;
}

.dashboard-link {
    color: #bbb;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

    .dashboard-link:hover {
        background-color: #333;
        color: #ffffff;
    }

.dashboard-logout-btn {
    font-size: 16px;
    padding: 10px;
    border-radius: 30px;
    margin-top: auto;
}

/* Header Styling */
.dashboard-header {
    background-color: #1b6ec2;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}

.dashboard-welcome {
    font-size: 24px;
    font-weight: bold;
}

.dashboard-subtitle {
    font-size: 14px;
}

.dashboard-search {
    position: relative;
    max-width: 300px;
    margin-top: 10px;
}

    .dashboard-search input {
        width: 100%;
        padding: 10px 40px 10px 15px;
        border: none;
        border-radius: 20px;
        outline: none;
    }

    .dashboard-search i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #bbb;
    }

/* Main Content */
.dashboard-main {
    flex-grow: 1;
    padding: 20px;
}

/* Employees Table */
.employees-management {
    margin-top: 20px;
}

.employees-table {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow-x: auto;
}

    .employees-table h2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }

/* Button Styles */
.btn-primary, .btn-login {
    background-color: #1b6ec2;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 30px; /* Rounded corners */
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    display: inline-block;
    width: 100%;
}

    .btn-primary:hover, .btn-login:hover {
        background-color: #14548a;
        color: white;
    }

/* Modal Styling */
.modal-header {
    border-bottom: none;
}

.modal-content {
    border-radius: 10px;
}

.modal-body {
    text-align: center;
    font-size: 18px;
    color: #333;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

    .modal-footer button {
        width: 100px;
        font-size: 16px;
        margin: 0 10px;
    }

