/* Info Card Styles */
.info-card {
    background: rgba(10, 25, 47, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(79, 190, 255, 0.3);
    box-shadow: 0 0 15px rgba(79, 190, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 0 20px rgba(79, 190, 255, 0.4);
    border-color: rgba(79, 190, 255, 0.5);
}

.info-card .card-header {
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.9), rgba(20, 45, 87, 0.9));
    padding: 15px 20px;
    border-bottom: 1px solid rgba(79, 190, 255, 0.3);
}

.info-card .card-header h3 {
    color: #4fbeff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card .card-body {
    padding: 20px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    border-left: 3px solid #4fbeff;
    padding-left: 10px;
}

/* Wallet List Styles */
.wallet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.wallet-item {
    display: flex;
    align-items: center;
    background: rgba(30, 45, 67, 0.6);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(79, 190, 255, 0.2);
    transition: all 0.3s ease;
}

.wallet-item:hover {
    background: rgba(40, 55, 77, 0.8);
    transform: translateY(-2px);
}

.wallet-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.wallet-item span {
    color: #fff;
    font-size: 0.9rem;
}

/* Instruction List Styles */
.instruction-list {
    padding-left: 25px;
    margin: 0;
}

.instruction-list li {
    color: #ccd6f6;
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
}

.instruction-list li:last-child {
    margin-bottom: 0;
}

/* Token Details Styles */
.token-details {
    background: rgba(30, 45, 67, 0.6);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(79, 190, 255, 0.2);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(79, 190, 255, 0.1);
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: #8892b0;
    font-size: 0.9rem;
}

.detail-value {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.contract-address {
    background: rgba(79, 190, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
}

/* Mini Chart Container */
.mini-chart-container {
    background: rgba(30, 45, 67, 0.6);
    border-radius: 8px;
    padding: 15px;
    height: 150px;
    border: 1px solid rgba(79, 190, 255, 0.2);
}

/* Media Queries */
@media (max-width: 768px) {
    .wallet-list {
        flex-direction: column;
        gap: 5px;
    }

    .wallet-item {
        width: 100%;
    }
}
