/* General Styles */
.employee-dashboard {
    font-family: 'Raleway', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px #0093dd52;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-greeting {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 600;
	margin-bottom: 0 !important;
}

.logout-button {
    background: #f44336;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.logout-button:hover {
	color: #fff;
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    font-weight: 500;
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    color: #444;
	font-weight: 600;
}

.info-list li i {
    margin-right: 10px;
    font-size: 20px;
    color: #0073aa;
}

/* Button */
.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.button:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

/* Dashboard Message */
.dashboard-message {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffe4e1;
    color: #b22222;
    border: 1px solid #ffccd5;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}

.dashboard-message a{
	color: inherit;
}

/*Dashboard Section*/
.dashboard-section{
	margin-top: 50px;
}

/*Highlight First Name*/
.employee-dashboard .highlighted-text{
	color: #0093DD;
}

.slip-not-available{
	font-weight: 600;
}

.employee-dashboard a{
	text-decoration: none !important;
}


/* Responsive Design */
@media (max-width: 600px) {
    .employee-dashboard {
        padding: 15px;
    }

    .dashboard-greeting {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .info-list li {
        font-size: 14px;
    }

    .button {
        padding: 10px 20px;
    }
}