* { box-sizing: border-box; transition: 0.3s; }
body {
    margin: 0;
    background-color: #05000a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
}

.app-wrapper {
    width: 100%;
    max-width: 500px; /* قەبارێ مۆبایلێ */
    padding: 20px;
    min-height: 100vh;
}

/* قەبارێ لاپتۆپ و PC */
@media (min-width: 1024px) {
    .app-wrapper {
        max-width: 900px; 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    header, .welcome-text, .app-logo-text { grid-column: span 2; }
}

.main-header { display: flex; justify-content: space-between; padding: 10px 0; }
.welcome-text { font-style: italic; font-weight: 300; margin-bottom: 0; }
.app-logo-text { font-size: 2.5rem; margin-top: 0; color: #fff; }

.quick-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.action-item {
    background: #1a1025;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    border: 1px solid #3b205e;
}

.glass-card {
    background: #0d0814;
    border: 1px solid #2a1645;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

/* دیزاینێ جهێ ئاپلۆدکرنا وێنەی */
.upload-section {
    text-align: center;
    border: 2px dashed #a855f7;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    background: #160d24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.upload-section:hover { background: #23153b; }
#logo-preview { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

.input-field input, .row-inputs input, select {
    width: 100%; background: #1a1025; border: 1px solid #3b205e;
    padding: 15px; border-radius: 12px; color: white; margin-bottom: 10px; outline: none;
}
.row-inputs { display: flex; gap: 10px; }

.primary-btn {
    width: 100%; background: #a855f7; color: white; border: none;
    padding: 15px; border-radius: 50px; font-weight: bold; cursor: pointer; font-size: 1.1rem;
}
.primary-btn:hover { background: #9333ea; }

table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #0d0814; border-radius: 15px; overflow: hidden; }
th { color: #a855f7; padding: 15px; text-align: left; border-bottom: 1px solid #2a1645; background: #1a1025; }
td { padding: 15px; border-bottom: 1px solid #1a1025; vertical-align: middle; }
.team-cell { display: flex; align-items: center; gap: 10px; }
.team-cell img { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; border: 1px solid #a855f7; }
