.wireframe-container {
    background-color: #ffffff;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.wireframe-box {
    border: 1px dashed #9ca3af; /* gray-400 */
    border-radius: 0.375rem;
    color: #6b7280; /* gray-500 */
    font-size: 0.875rem;
}

.tab-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #374151; /* gray-700 */
    transition: background-color 0.2s, color 0.2s;
}

.tab-button.active {
    background-color: #ffffff;
    color: #111827; /* gray-900 */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.tab-button:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hidden {
    display: none;
}
