
.alg-form-group input[type="text"],
.alg-form-group input[type="tel"],
.alg-form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.alg-bundle-option,
.alg-color-option {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.alg-bundle-option:hover,
.alg-color-option:hover {
    background-color: #f5f5f5;
}

.alg-bundle-option input[type="radio"],
.alg-color-option input[type="radio"] {
    margin-right: 10px;
}

.alg-form-container.rtl .alg-bundle-option input[type="radio"],
.alg-form-container.rtl .alg-color-option input[type="radio"] {
    margin-right: 0;
    margin-left: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.sale-price {
    color: #e74c3c;
    font-weight: bold;
}

.alg-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.alg-next-btn,
.alg-prev-btn,
.alg-submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alg-next-btn,
.alg-submit-btn {
    background-color: #8B4A4A;
    color: white;
}

.alg-prev-btn {
    background-color: #f5f5f5;
    color: #333;
}

.alg-next-btn:hover,
.alg-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.alg-loading {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #8B4A4A;
}

.alg-dashboard-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.alg-stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 150px;
}

.alg-stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #8B4A4A;
    margin: 0;
}

.bundle-row,
.color-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.bundle-row input,
.color-row input {
    flex: 1;
}

.remove-bundle,
.remove-color {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}
