.dashboard-container {
    position: absolute;  
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.dashboard-container h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.dashboard-container p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.dashboard-container a {
    display: inline-block;
    padding: 12px 26px;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.dashboard-container a:hover {
    background: #ff1f1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.4);
}
