.sn-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #f8f9fa; border-top: 4px solid #1976d2; box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
z-index: 99999;
padding: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.sn-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
flex-wrap: wrap;
gap: 15px;
}
.sn-text p {
margin: 0;
color: #333;
font-size: 15px;
line-height: 1.5;
}
.sn-text a {
color: #1976d2;
text-decoration: underline;
} .sn-buttons {
display: flex;
gap: 10px;
}
.sn-btn {
padding: 10px 20px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
font-size: 14px;
border: none;
transition: all 0.3s ease;
}
.sn-btn-primary {
background-color: #1976d2; color: white;
}
.sn-btn-primary:hover {
background-color: #1565c0;
}
.sn-btn-outline {
background-color: transparent;
border: 2px solid #1976d2;
color: #1976d2;
}
.sn-btn-outline:hover {
background-color: #e3f2fd;
} .sn-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 100000;
display: flex;
justify-content: center;
align-items: center;
}
.sn-modal-content {
background: white;
width: 90%;
max-width: 500px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
overflow: hidden;
}
.sn-modal-header {
background: #e3f2fd; padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #bbdefb;
}
.sn-modal-header h3 {
margin: 0;
color: #1976d2;
}
.sn-close {
font-size: 28px;
cursor: pointer;
color: #1976d2;
line-height: 1;
}
.sn-modal-body {
padding: 20px;
}
.sn-option {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
border-bottom: 1px solid #eee;
}
.sn-label {
display: flex;
flex-direction: column;
}
.sn-label span {
font-weight: bold;
color: #333;
}
.sn-label small {
color: #666;
margin-top: 4px;
}
.sn-modal-footer {
padding: 20px;
background: #f8f9fa;
text-align: right;
} @media (max-width: 768px) {
.sn-container {
flex-direction: column;
text-align: center;
}
.sn-buttons {
width: 100%;
justify-content: center;
}
}