@import url('general.css');

.visa-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 10px 20px 10px;
    font-family: 'Roboto';
}
.visa-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
/* .visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
} */
.visa-card h1 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}
.visa-card ul {
    list-style-type: none;
    padding-left: 0;
}
.visa-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}
.visa-card ul li:last-child {
    border-bottom: none;
}



.loader_div {
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    padding: 20px;
}
/* Loader */
.loader {
    border: 8px solid rgba(243, 243, 243, 0.307); 
    border-radius: 50%;
    border-top: 8px solid #0077ff; 
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ----- */

/* GENERAL ALERT SCREEN */
.fullscreen_alert_general {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; 
}

.fullscreen_alert_content_general {
    background: white;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;  
    min-height: 180px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.fullscreen_alert_content_general h2{
    padding: 10px 0 0 0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
.fullscreen_alert_content_general h1{
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}
.fullscreen_alert_general_buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10%;
}

.cancel_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: white; 
    width: auto;
    margin: 0;
    text-align: center; 
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
}

.cancel_btn:hover {
    background: #970000;
}


.accept_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #00c22d;
    color: white; 
    width: auto;
    margin: 0;
    text-align: center; 
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
}

.accept_btn:hover {
    background: #008820;
}
.full-width-info {
    width: 80%;
    background-color: #fff8db; 
    border: 1px solid #ffd700; 
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
}

.full-width-info h2 {
    margin-top: 0;
    font-size: 16px;
    color: #d48806;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-info h2::before {
    content: "⚠️";
    margin-right: 10px;
}

.full-width-info p {
    font-size: 16px;
    margin-top: 10px;
}

.section-title {
    font-family: 'Roboto';
    text-align: center;
    padding: 10px;
}

.item-price-process{
    font-size: 16px !important;
    color: #555;
    font-weight: 500;
}

.section-title h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title p {
    margin-top: 10px;
    font-size: 16px;
    color: #1f6dea;
}
