* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    min-height: 100vh;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.data-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.data-card:hover {
    transform: translateY(-2px);
}

.rank-item:nth-child(odd) {
    background-color: #fafafa;
}

.rank-item:hover {
    background-color: #f5f5f5;
}

.tab-item.active {
    color: #FF6B35;
    font-weight: 600;
}

.tab-item {
    color: #6b7280;
}

button, a, input {
    border: none;
    background: transparent;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}