body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    background: #f3f4f6;
    color: #333;
}

header {
    background: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.quota-label {
    background: #4CAF50;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}
.user-photo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.hidden {
    display: none !important;
}

main {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px #00000015;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box; 
    resize: vertical;  
    border-radius: 8px;
    border: 1px solid #ccc;
}

.action-row {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

select {
    padding: 10px;
    font-size: 16px;
}

.btn {
    padding: 10px 18px;
    background: #ddd;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.primary {
    background: #4f46e5;
    color: white;
}

.status {
    margin-top: 15px;
    color: #666;
}
