body {
    margin: 0;
    background-color: #ffffff;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.articles-count-container {
    margin-right: 600px;
    padding: 40px 20px;
    max-width: 900px;
}

.articles-count-container h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.form-section {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #4a00ff; /* بنفسجي */
    padding: 20px;
    border-radius: 12px;
}

.form-section input {
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    width: 60%;
    border-radius: 10px;
    outline: none;
    background-color: #c6f1f2; /* سماوي فاتح */
    text-align: center;
}

.form-section button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.form-section button:hover {
    background-color: #f0f0f0;
}

#resultsBox {
    margin-top: 20px;
    background-color: #c6f1f2; /* سماوي */
    padding: 20px;
    border-radius: 14px;
    border: 5px solid #4a00ff;
    box-shadow: inset 0 0 0 5px #c6f1f2;
}

#resultsTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #c6f1f2;
}

#resultsTable thead {
    background-color: #007bff;
    color: white;
}

#resultsTable th,
#resultsTable td {
    padding: 16px 20px;
    border: 1px solid #000;
    text-align: right;
    font-size: 16px;
}

#resultsTable tr:nth-child(even) {
    background-color: #daf6f7;
}

#resultsTable tr:hover {
    background-color: #b6eaf0;
}
