﻿body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

.main-container {
    height: 100vh;
    background-color: #2c2663;
    background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 40px );
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #f4f5ff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .header .title {
        color: #3a2fa8;
        font-weight: 600;
    }

    .header .user-info {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #3a2fa8;
        font-weight: 500;
        font-size: 15px;
    }

/* Card */
.card {
    background-color: #f4f5ff;
    margin-top: 80px;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}

    .card h3 {
        margin-bottom: 25px;
        font-size: 1.6rem;
        color: #2c2663;
    }

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-button {
    background-color: white;
    border: 2px solid #6b5dd3;
    border-radius: 10px;
    padding: 12px 0;
    color: #2c2663;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .action-button:hover {
        background-color: #6b5dd3;
        color: white;
    }

.logout {
    border-color: #d35d5d;
    color: #d35d5d;
}

    .logout:hover {
        background-color: #d35d5d;
        color: white;
    }
