.org-logo {
    width: 48px;
    height: 48px;
    background-color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.org-card-radio {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    background-color: white;
    transition: all 0.2s;
}

.org-card-radio:hover {
    border-color: #555555;
    background-color: rgba(0, 0, 0, 0.02);
}

.org-card-radio.checked {
    border-color: #1976d2;
    background-color: rgba(25, 118, 210, 0.04);
}

.org-card-radio input[type="radio"] {
    margin: 0;
    margin-left: auto;
    cursor: pointer;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.org-card-radio input[type="radio"]:checked {
    accent-color: #1976d2;
}

.btn {
    transition: none !important;
}

.btn:hover {
    text-decoration: none;
}
