/* override lef right */
@media (min-width: 769px) {
    .two_columns .left {
        width: 250px;
        margin-right: 20px;
    }

    .two_columns .right {
        width: calc(100% - 270px);
    }
}

/* Container meniu */
.sidebar {
    width: 250px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Bara de progres (doar pentru înregistrare) */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    display: none; /* Se activează doar pentru înregistrare */
}
.progress-bar-fill {
    height: 100%;
    background: #dd2241;
    width: 0%; /* Se va actualiza din JS */
    transition: width 0.5s ease-in-out;
}

/* Stilizare meniu pentru pașii înregistrării */
.menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
    font-weight: bold;
}
.menu-item:hover {
    background: #f4f4f4;
}
.menu-item.active {
    /*background: #dd2241;*/
    background: linear-gradient(135deg, #e63946, #b71c1c);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    color: white;
    font-weight: bold;
}

.menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.menu-text {
    flex: 1;
}
.menu-status {
    font-size: 12px;
}
.completed {
    color: #888888;
}

/* Indicator vizual pentru pasul curent */
.progress-indicator {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    box-shadow: 0 0 0 3px #c8e6c9;
    border-radius: 50%;
    margin-left: auto; /* Îl împinge la dreapta */
}

.m-t-20 {
    margin-top: 20px;
}

.progress-header-mobile {
    display: none;
}

@media (max-width: 768px) {
    .progress-header-mobile {
        background: #f4f4f4;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
        width:100%;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .progress-header-mobile span {
        color: #dd2241;
    }

    .progress-line-container {
        width: 100%;
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
        margin-top: 5px;
        overflow: hidden;
    }

    .progress-line {
        height: 100%;
        background: #dd2241;
        width: 0%; /* Se va actualiza din JS */
        transition: width 0.5s ease-in-out;
    }
}

.title {
    font-family: "Merriweather";
}

/* Zona informativă */
.info-box {
    background: #f4f4f4; /* Fundal gri deschis */
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px; /* Spațiu între icon și text */
    margin-bottom: 20px;
}

/* Iconul de editare (stânga) */
.info-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.info-icon img:hover {
    opacity: 1;
}

/* Text indentat, justificat */
.info-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-align: justify;
}

.char-count {
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 10px;
}

/* margins */
.m-b-0 {margin-bottom: 0px}
.m-b-10 {margin-bottom: 10px}
.m-b-20 {margin-bottom: 02px}
.m-b-30 {margin-bottom: 0p3x}

@media (max-width: 768px) {
    .info-box .info-icon {
        display: none; /* Ascunde iconița pe mobile */
    }
}

/* Container principal */
.package-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    flex-wrap: nowrap; /* Toate pachetele pe aceeași linie */
}

/* Cardul fiecărui pachet */
.package {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 270px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-top: 5px solid #007bff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Linie separatoare stilizată */
.separator {
    height: 1px;
    background: linear-gradient(to right, #ddd, #bbb, #ddd);
    margin: 15px 0;
}

/* Text generic */
.package p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-align: left;
}

/* Preț */
.price-container {
    text-align: left;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: inline-block;
}

.discount {
    color: #ff9800;
    font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
}

.new-price {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    margin-top: 5px;
    display: block;
}

/* Text sub buton */
.annual-billing {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* Buton cumpărare */
.buy-button {
    display: inline-block;
    margin-top: 10px;
    background: #e57373;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    border: 0px;
}

.buy-button:hover {
    background: #dd2241;
}

/* Listă beneficii */
.features {
    text-align: left;
    padding-left: 15px;
}

.features li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
}

.features li::before {
    content: "✔";
    color: #007bff;
    font-weight: bold;
    margin-right: 8px;
}

/* Culori diferite pentru fiecare pachet */
.basic { border-top-color: #888; }
.standard { border-top-color: #28a745; }
.premium { border-top-color: #ffc107; }
.gold { border-top-color: #ff5722; }

/* Responsivitate pe mobil */
@media (max-width: 768px) {
    .package-container {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .package {
        width: 90%;
        max-width: 300px;
    }
}

/* upload */
.upload-label {
    display: block;
    background: #53484b;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 0px !important;
}

.file-input {
    display: none;
}

.upload-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    position: relative;
}

.preview-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.preview-video {
    width: 100px;
    height: 50px;
    border-radius: 5px;
}

.upload-progress-bar {
    width: calc(100% - 20px);
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

.upload-progress-bar-fill {
    height: 100%;
    background: #007bff;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.cancel-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

/* disabled name fiedl */
.field-name-wizzard-container {
    margin-bottom: 15px;
}

.field-name-wizzard-label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.field-name-wizzard-display {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.field-name-wizzard-display i {
    margin-right: 10px;
    color: #888;
    font-size: 18px;
}

.field-name-wizzard-display:hover {
    background: #fff;
    border-color: #1dd1a1;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* fields de la pana la inserted into form array */
.range-price-fields {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.range-price-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.range-price-item {
    flex: 1;
    min-width: 120px; /* Se ajustează pe ecrane mai mici */
}

/* account listing prices  */
.account-listing-service-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-listing-price-range {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 4px 10px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    display: inline-block;
}

.account-listing-price-unavailable {
    background: #bbb;
    color: #fff;
}

/* design add zone and locations */
.account-listing-location-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-listing-location-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.account-listing-county, .account-listing-city {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
}

.account-listing-remove-location {
    background: #ff4d4d; /* Roșu deschis */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.account-listing-remove-location {
    width: 36px; /* Dimensiune fixă pentru cerc perfect */
    height: 36px;
    min-width: 36px; /* Evită deformarea */
    min-height: 36px;
    border-radius: 50%; /* Asigură că rămâne cerc */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Ajustează dimensiunea iconului */
}

.account-listing-remove-location:hover {
    background: #e60000; /* Roșu mai închis la hover */
}

@media (max-width: 768px) { /* Pe mobil */
    .account-listing-remove-location {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.account-listing-add-location {
    background: linear-gradient(135deg, #2ecc71, #27ae60); /* Gradient verde fresh */
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

.account-listing-add-location i {
    font-size: 16px;
}

.account-listing-location-row {
    display: flex;
    align-items: center; /* Aliniere verticală corectă */
    gap: 10px; /* Spațiere între elemente */
}


.account-listing-add-location:hover {
    background: linear-gradient(135deg, #27ae60, #1e8449); /* Verde mai închis la hover */
    transform: scale(1.05); /* Efect subtil de mărire */
}

.account-listing-location-row select {
    margin-bottom: 0px;
}