/**
 * Shortcode styles
 */
.arta-budget-sale-type-selector {
    display: flex;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
}

.arta-budget-sale-type-selector label {
    margin-left: 10px;
    font-weight: 600;
}

.arta-budget-sale-type-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.arta-budget-sale-type-selector select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.arta-budget-sale-type-selector select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.arta-budget-select-wrapper {
    position: relative;
    display: inline-block;
}

.arta-budget-loading-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    animation: arta-budget-spin 1s linear infinite;
    pointer-events: none;
}

@keyframes arta-budget-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.arta-budget-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
}

.arta-budget-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.arta-budget-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

