.agency-change-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.agency-change-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: center;
}

.agency-change-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agency-list {
    border: 1px solid rgb(229 231 235);
    border-radius: 0.375rem;
    overflow: hidden;
}

.dark .agency-list {
    border-color: rgb(55 65 81);
}

.agency-item {
    display: block;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.agency-item:not(:last-child) {
    border-bottom: 1px solid rgb(229 231 235);
}

.dark .agency-item:not(:last-child) {
    border-bottom-color: rgb(55 65 81);
}

.agency-item:hover {
    background-color: var(--primary-500);
    color: white;
}

.agency-item.selected {
    background-color: var(--primary-500);
    color: white;
}

.agency-item input[type="radio"] {
    display: none;
}

.agency-submit-button {
    width: 100%;
}
