body {
    background-color: #282e3c;
    color: #ffffff;
    font-family: 'IBM Plex Arabic', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.navbar {
    background-color: #282e3c;
}

.navbar-brand,
.nav-link {
    color: #ffffff !important;
}

.nav-link:hover {
    color: #cccccc !important;
}

textarea {
    background-color: #f7f7f7;
    color: #000000;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    font-family: 'IBM Plex Arabic', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: right; /* Ensures text aligns properly in RTL */
}

textarea::placeholder {
    color: #999999;
}
/* Loader Styles */
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
