/* Общ стил за профилната форма */
.profile-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content; /* 👈 това ще махне излишната височина */
}


/* Стилизиране на самата форма */
.profile-form {
    display: flex;
    flex-direction: column;
}

/* Заглавие на формата */
.profile-header h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.profile-header p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Контейнер за полетата */
.profile-box {
    display: flex;
    flex-direction: column;
}

/* Разстояние между редовете в формата */
.profile-row {
    margin-bottom: 20px;
}

/* Стил за етикетите на полетата */
.profile-label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left; /* Подравняване на етикетите вляво */
    display: inline-block; /* Задължително за да работи правилно с text-align */
    width: 100%; /* За да се подравни правилно с полето */
}

/* Стил за входните полета */
.profile-row input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.profile-dropdown-container {
    position: relative;
    width: 100%;
}

.profile-dropdown {
    width: 100%;
    max-width: 700px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    height: 43px;
    box-sizing: border-box;
    font-family: inherit;
    color: #333;
    margin: 0;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.profile-dropdown-button {
    display: none;
}

.profile-dropdown-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #02699B;
    color: white;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 16px;
    z-index: 2;
}