
.wp-curl-tabs { width:100%; }
.wp-curl-tabs .tabs { display: flex; gap: 3px; margin-bottom: 18px; flex-wrap: wrap; text-align:center; }
.wp-curl-tabs .tab {
padding: 8px 15px;
background: #eee;
cursor: pointer;
border-radius: 3px;
user-select: none;
transition: background-color 0.3s;
text-align:center;
}
.wp-curl-tabs .tab.active, .wp-curl-tabs .tab:hover {
background: #0073aa;
color: white;
}
.wp-curl-tabs .tab.active {
font-weight:bold;
}
#wp-curl-tab-content {
position: relative;
min-height: 88px;
}
.spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 5px solid #ccc;
border-top: 6px solid #3498db;
border-radius: 50%;
width: 33px;
height: 33px;
animation: spin 1s linear infinite;
z-index: 10;
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}