* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, "Noto Sans Arabic", sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    direction: rtl;
}

/* بەشی سەرەوە */
.header {
    height: 95px;
    background-color: #40536b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
    border-bottom: 2px solid #d8d8d8;
}

.logout-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffbd72, #f47d20);
    border: 4px solid #c55b14;
    color: white;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.45);
}

.logout-btn:hover {
    transform: scale(1.04);
}

.title {
    font-size: 28px;
    color: purple;
    font-weight: bold;
    letter-spacing: 1px;
}

.user-info {
    text-align: right;
    line-height: 1.9;
    font-size: 16px;
}

.user-info span {
    color: #d9842f;
    font-weight: bold;
}

/* ناوەڕاست */
.main {
    min-height: calc(100vh - 135px);
    padding-top: 70px;
}

.menu {
    width: 72%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px 70px;
    text-align: center;
}

.item {
    text-align: center;
}

.icon {
    font-size: 72px;
    margin-bottom: 14px;
}

.menu button {
    width: 180px;
    height: 52px;
    background-color: #40536b;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

.menu button:hover {
    background-color: #2f4054;
}

.special-btn {
    background-color: white !important;
    color: #b12a2a !important;
    border: 2px solid #bfbfbf !important;
}

.special-btn:hover {
    background-color: #f1f1f1 !important;
}

/* بەشی خوارەوە */
.footer {
    height: 40px;
    background-color: #40536b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
    font-size: 16px;
}

.time {
    color: #e28132;
    font-size: 25px;
    font-weight: bold;
}

/* بۆ مۆبایل و تابلێت */
@media (max-width: 1000px) {
    .menu {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .header {
        height: auto;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .logout-btn {
        width: 75px;
        height: 75px;
        font-size: 18px;
    }

    .title {
        font-size: 22px;
        text-align: center;
    }

    .menu {
        grid-template-columns: 1fr;
    }

    .footer {
        height: auto;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        text-align: center;
    }
}