body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    direction: rtl;
}

h1,
h2 {
    color: #2c3e50;
    text-align: center;
}

.calculator {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

.calculator p {
    color: #fa0000;
    /* تغيير اللون إلى لون مناسب */
    text-align: center;
    padding: 10px;
    bottom: 0;
    font-weight: bold;
}

.course-input {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.course-input input,
#lastGPA,
#gpaToConvert,
#oldGPA,
#oldCredits {
    flex: 1;
    padding: 8px;
    margin: 5px;
    min-width: 120px;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin: 5px;
}

button:hover {
    background-color: #2980b9;
}

.result {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
}

.remove-course {
    background-color: #e74c3c;
}

.remove-course:hover {
    background-color: #c0392b;
}

#sections {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 5px;
}

.active-section {
    background-color: #2ecc71;
}

.error {
    color: red;
    font-weight: bold;
}

.highlight {
    color: red;
    font-weight: bold;
}

.info-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #3498db;
}

.info-text {
    display: none;
    position: absolute;
    top: 40px;
    left: 10px;
    background-color: #fff;
    border: 1px solid #3498db;
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
    width: 250px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .course-input {
        flex-direction: column;
    }

    .course-input input {
        width: 100%;
        margin: 5px 0;
    }

    #sections {
        flex-direction: column;
    }

    .section-button {
        width: 100%;
        margin: 5px 0;
    }
}

footer {
    color: #2c3e50;
    /* تغيير اللون إلى لون مناسب */
    text-align: center;
    padding: 10px;
    bottom: 0;
    font-weight: bold;
}

footer a {
    color: #3498db;
    /* لون الرابط */
    text-decoration: none;
    /* إزالة الخط تحت الرابط */
}

footer a:hover {
    text-decoration: underline;
    /* عند التمرير على الرابط يظهر خط تحت الرابط */
}


#siteDescription h2 {
    color: #2c3e50;
}

#siteDescription p {
    font-size: 18px;
    margin-top: 10px;
}

#siteDescription video {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

/* تنسيق الفيديو داخل الـ container */
.video-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

video {
    width: 100%;
    height: auto;
    display: block;
}

/* تنسيق الفيديو داخل الـ container */
.video-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

video {
    width: 100%;
    height: auto;
    display: block;
}