/* design.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif; /* Modern Arabic font */
}

body {
    background-color: #f4f7fa; /* Light background for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    direction: rtl; /* Right-to-left for Arabic */
}

.big-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

#full-name {
    margin-bottom: 20px;
}

.name label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.name input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.name input:focus {
    border-color: #4a90e2; /* Blue focus border */
}

#time-table {
    margin-bottom: 20px;
}

#time-table select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#time-table select:focus {
    border-color: #4a90e2;
}

#buttom {
    text-align: center;
}

#buttom button {
    background-color: #4a90e2;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#buttom button:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

#buttom button:active {
    transform: translateY(0);
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
    .big-container {
        padding: 20px;
        margin: 10px;
    }

    .name label,
    .name input,
    #time-table select,
    #buttom button {
        font-size: 14px;
    }
}