/* Symbol Cluster UI */
.cluster-item {
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0.25rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background-color: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.cluster-item:hover {
    box-shadow: 0 0 10px rgba(0,123,255,0.5);
}

.cluster-item.selected {
    background-color: rgba(0,123,255,0.1);
    border-color: #007bff;
}

.cluster-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 0.25rem;
    padding: 5px;
    cursor: pointer;
}

.view-all-btn {
    font-size: 0.75rem;
}

/* Individual symbol styling */
.individual-symbol {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.25rem;
    padding: 0.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 0.25rem;
    width: 60px;
}

.symbol-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.symbol-exclude {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

.symbol-exclude input {
    margin-right: 0.25rem;
}

.symbol-exclude label {
    margin-bottom: 0;
}

/* Replacement UI */
.replacement-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 0.25rem;
}

/* Form controls */
.form-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Regrouped clusters */
.regrouped-cluster-item {
    padding: 0.75rem;
    margin-bottom: 1rem;
    background-color: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.regrouped-cluster-item:hover {
    box-shadow: 0 0 10px rgba(23,162,184,0.5);
}

.symbol-image-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 0.25rem;
}

.regrouped-symbol {
    margin: 0.1rem;
    padding: 0.25rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 0.25rem;
}