/* Estilos personalizados para os tooltips */
.tippy-box {
    background-color: #1f2937;
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tippy-arrow {
    color: #1f2937;
}

.tippy-box[data-theme~='success'] {
    background-color: #059669;
}

.tippy-box[data-theme~='success'] .tippy-arrow {
    color: #059669;
}

.tippy-box[data-theme~='error'] {
    background-color: #dc2626;
}

.tippy-box[data-theme~='error'] .tippy-arrow {
    color: #dc2626;
}

.tippy-box[data-theme~='warning'] {
    background-color: #d97706;
}

.tippy-box[data-theme~='warning'] .tippy-arrow {
    color: #d97706;
}

.tippy-box[data-theme~='info'] {
    background-color: #069dd9;
}

.tippy-box[data-theme~='info'] .tippy-arrow {
    color: #069dd9;
}

/* Estilos para formulários inline */
.inline-form {
    display: inline;
}

/* Estilos para o background gradiente */
.gradient-bg {
    background: linear-gradient(135deg, #f3f4f6 0%, #fff 100%);
} 