/* Custom styles for Buhamedia Plugin */
[v-cloak] {
    display: none;
}

/* Tab styling */
.buhamedia-tabs .tab-link {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    color: #9ca3af; /* gray-400 */
}

.buhamedia-tabs .tab-link.active {
    border-bottom-color: #3b82f6; /* blue-500 */
    color: #ffffff;
}

.buhamedia-tabs .tab-link:hover {
    background-color: #374151; /* gray-700 */
    color: #ffffff;
}

/* Style for selected theme/style */
.style-item.selected, .theme-item.selected {
    outline: 2px solid #3b82f6; /* blue-500 */
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Loading spinner */
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3b82f6; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937; /* gray-800 */
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #4b5563; /* gray-600 */
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #6b7280; /* gray-500 */
}