/* Taobao UI Button Styles */
.taobao-button {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: normal;
    line-height: 1.5;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    transition: all 0.3s;
}

.taobao-button:hover {
    border-color: #cccccc;
    color: #000000;
}

.taobao-button-secondary {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: normal;
    line-height: 1.5;
    background-color: #ffffff;
    color: #606266;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    transition: all 0.3s;
}

.taobao-button-secondary:hover {
    border-color: #cccccc;
    color: #000000;
}

.taobao-button-danger {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: normal;
    line-height: 1.5;
    background-color: #ffffff;
    color: #606266;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    transition: all 0.3s;
}

.taobao-button-danger:hover {
    border-color: #cccccc;
    color: #000000;
}

.taobao-tip {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #f5f7fa;
    border-radius: 5px;
    color: #909399;
    font-size: 12px;
    border: 1px solid #e4e7ed;
}

.taobao-tab-active {
    border-bottom: 2px solid #409eff;
    color: #409eff;
}

/* Dialog styles */
.taobao-dialog {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
}

/* Form elements */
.taobao-input {
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}

.taobao-input:focus {
    border-color: #cccccc;
    outline: none;
}

/* Notification styles */
.custom-notification {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    min-width: 200px;
    animation: notification-fade-in 0.3s ease-in-out;
}

.custom-notification-icon {
    margin-right: 10px;
}

.custom-notification-message {
    font-size: 14px;
}

@keyframes notification-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
