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

header {
    background-color: #4a90e2;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

header .logo {
  position: absolute;
  top: -17px;
  left: 1361px;
  height: 146px;
}

.documents {
    margin: 20px auto;
    max-width: 800px;
}

.documents h2 {
    color: #333;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
}

.documents ul {
    list-style: none;
    padding: 0;
}

.documents li {
    background-color: #fff;
    margin: 10px 0;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: transform 0.2s;
}

.documents li:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.doc-title {
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.documents button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.documents button:hover {
    background-color: #357ab8;
}

@media (max-width: 600px) {
    .documents li {
        flex-direction: column;
        align-items: flex-start;
    }

    .documents button {
        margin-top: 10px;
        width: 100%;
    }
}
