body {
    font-family: 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

.main-header {
    background: #007bff;
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-button {
    background-color: #ffc107;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto;
    gap: 20px;
    padding: 0 20px;
}

.score-input, .ai-feature {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    border: 1px solid #eee;
}

h2 {
    color: #007bff;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
}

input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.primary-btn {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.ai-button {
    background-color: #f1c40f;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
}

.ai-button:hover {
    background-color: #d4ac0d;
}

#ai-display button {
    margin: 5px;
    transition: all 0.2s ease;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 50px;
}