body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    background: url('/PYERCE/images/pyerce_photo.png') no-repeat center center fixed;
    background-size: cover;
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
}

a.dashboard-btn {
    display: block;
    width: 200px;   
    margin: 30px auto;
    padding: 12px 24px;
    background-color: #640a59;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid white;
}

a.dashboard-btn:hover {  
    background-color: #2472a4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dashboard-btn {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 12px 24px;
    background-color: #27ae60;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.dashboard-btn:hover {
    background-color: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.admin-submenu-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    margin: 0 5px;
}

.admin-submenu-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.admin-submenu-btn.active {
    background-color: #2c3e50;
    font-weight: bold;
    border: 2px solid #fff;
} 