/* Logo Update Styles */
.logo-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.official-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    /* 흰색 배경으로 로고 부각 */
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stock-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Individual colors are inline or via classes below */
}

/* Fallback Sector Colors (Gradient) */
.stock-logo.energy {
    background: linear-gradient(135deg, #7F7FD5, #91EAE4);
}

.stock-logo.semi {
    background: linear-gradient(135deg, #fce38a, #f38181);
}

.stock-logo.defense {
    background: linear-gradient(135deg, #302b63, #24243e);
}

.stock-logo.finance {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.stock-logo.robot {
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
}

.stock-logo.renewable {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}