.wp-curl-tabs {width:100%;}
.wp-curl-tabs .tabs { display: flex; gap: 3px; margin-bottom: 8px; flex-wrap: wrap; text-align:center; }
.wp-curl-tabs .tab {
    padding: 8px 15px;
    background: #0073aa;
    cursor: pointer;
    border-radius: 3px;
    user-select: none;
    transition: background-color 0.3s;
    text-align:center;
	color: #fff;
}
.wp-curl-tabs .tab.active, .wp-curl-tabs .tab:hover {
    background: #ff3300;
    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 #ff3300;
  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); }
}