/* Add Coin Modal Specifics */
.coin-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-right: 5px; /* Breathing room for scrollbar */
}

/* Custom Scrollbar for list */
.coin-list::-webkit-scrollbar {
    width: 4px;
}
.coin-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.coin-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 2px;
}

.coin-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(145deg, #222, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.coin-item-row:hover {
    border-color: var(--gold);
    transform: translateX(2px);
    background: linear-gradient(145deg, #2a2a2a, #222);
}

.coin-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-icon-placeholder {
    width: 32px;
    height: 32px;
    background: rgba(207, 181, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.coin-text {
    display: flex;
    flex-direction: column;
}

.coin-symbol-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.coin-name-text {
    color: #888;
    font-size: 12px;
}

.btn-add-icon {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.coin-item-row:hover .btn-add-icon {
    opacity: 1;
    transform: scale(1.2);
}

.modal-subtitle {
    margin-bottom: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
