/* Extracted from components\partners-slider.blade.php (block 1) */
/* Modern Toast Modal Styles */
.partner-modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(5px);
z-index: 9999;
animation: fadeIn 0.3s ease-in-out;
}

.partner-modal-overlay.active {
display: flex;
justify-content: center;
align-items: center;
}

.partner-modal {
background: linear-gradient(135deg, #4E342E 0%, #6F4E37 50%, #8D6E63 100%);
border-radius: 20px;
padding: 40px;
max-width: 450px;
width: 90%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transform: scale(0.7);
opacity: 0;
animation: modalPop 0.4s ease-out forwards;
text-align: center;
position: relative;
}

.partner-modal-icon {
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.95);
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-modal-icon img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}

.partner-modal-title {
color: #ffffff;
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.partner-modal-message {
color: rgba(255, 255, 255, 0.95);
font-size: 16px;
line-height: 1.6;
margin-bottom: 30px;
}

.partner-modal-buttons {
display: flex;
gap: 15px;
justify-content: center;
}

.partner-modal-btn {
padding: 14px 35px;
border: none;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.partner-modal-btn-confirm {
background: #ffffff;
color: #4E342E;
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.partner-modal-btn-confirm:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.partner-modal-btn-cancel {
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.partner-modal-btn-cancel:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes modalPop {
0% {
transform: scale(0.7);
opacity: 0;
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
opacity: 1;
}
}

@media (max-width: 768px) {
.partner-modal {
padding: 30px 25px;
max-width: 90%;
}

.partner-modal-title {
font-size: 20px;
}

.partner-modal-message {
font-size: 14px;
}

.partner-modal-buttons {
flex-direction: column;
}

.partner-modal-btn {
width: 100%;
}
}