/* ############### WHITELABEL COLOR IMPORT ############### */
@import url("../../assets/css/whitelabel-colors.css");

.az-body {
    background: var(--whitelabel-accent);
}

.profile-info {
    display: initial;
}

.round-image {
    width: 85px; /* Adjust size as needed */
    height: 85px; /* Ensure it's a square */
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.profile-tip-send-tip-button {
    margin-bottom: 0px;
}

.parent-container {
    height: 100%;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


.profile-picture-selected {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer; /* Makes the row clickable */
}

.user-info h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.user-info p {
    font-size: 14px;
    color: gray;
    margin: 0;
}

.checkbox-container {
    display: flex;
    justify-content: flex-end;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid gray;
    appearance: none;
    cursor: pointer;
    position: relative;
    background-color: white;
}

input[type="checkbox"]:checked {
    background-color: var(--whitelabel-danger);
    border: none;
}

input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    font-size: 14px;
    font-family: Arial, sans-serif; /* Simple font */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-sm {
    font-size: 12px;
    color: gray;
}

.checkbox_selected {
    background-color: var(--whitelabel-success);
    border: none;
}

.sepa-consent .form-check-input {
    width: 1rem;
    height: 1rem;
}

/* Inline error boxes */
.inline-error {
    border: 1px solid var(--whitelabel-danger);
    background: rgba(220, 53, 69, 0.08); /* light red */
    color: var(--whitelabel-danger);
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700; /* bold */
    margin-top: 12px; /* more top padding to visually center in space */
}