/* 1. الإعدادات العامة للمساحات */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0B1C32;
    font-family: 'hebeda', sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px; 
   -webkit-user-select: none; /* يمنع التظليل */
    user-select: none;
}


.payment-container {
    background: #112B4A;
    width: 100%;
    max-width: 500px;
    padding: 30px; 
    border-radius: 10px; 
    border: 2px solid #e7eaf6;
}

form {
    margin: 0;
}

h2 { 
    color: #ffa500; 
    text-align: center; 
    margin-bottom: 25px; 
    font-size: 30px;
    font-weight: 700;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #e7eaf6;
    font-size: 17px;
}

.required {
    color: #D90D32;
    font-weight: bold;
    margin-left: 4px;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e7eaf6;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #e7eaf6;
    font-weight: 700;
    font-size: 17px; 
    transition: border-color 0.3s;
}

/* تحديث: إزالة الإطار البرتقالي والظل عند التركيز */
input:focus, select:focus, button:focus {
    outline: #ffa500 !important;
    box-shadow: none !important;
    border-color: #e7eaf6; /* يمكنك تغيير اللون هنا إذا أردت إطاراً بلون آخر */
}

input:invalid:not(:placeholder-shown), select:invalid:not(:placeholder-shown) {
    border: 1px solid #e7eaf6;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 12px;
    padding-left: 30px;
}

button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 0; 
    background-color: #D90D32;
    color: #e7eaf6;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover { background-color: #ffa500; }

#selected-package-display {
    color: #D90D32; 
    font-weight: 700; 
    margin: -10px 0 20px 0;
    text-align: center;
    font-size: 23px; 
}

#response-message {
    color: #e7eaf6 !important;
    font-size: 20px;          
    font-weight: bold;
    text-align: center;
    margin-top: 40px;         
    padding: 20px;
}

#booking-title {
    color: #ffa500;            
    margin-bottom: 20px;
}

@media(max-width: 500px) {    
    body { padding: 40px 6px; }
    .payment-container { padding: 20px; } 
    h2 { font-size: 19px; }
    label { font-size: 14px; }
    input, select { font-size: 13px; }
    button { font-size: 14px; }
    #selected-package-display { font-size: 18px; }
}