﻿
#progress-bar {
    height: 5px;
    background-color: #13b1cd;
    transition: width 0.5s ease-out;
}
#container {
    height: 600px;
    width: 100%;
}
.functionframe {
    width: 100%;
    border: none;
    overflow: hidden;
    height: 450px;
    z-index: 2001;
}
.regionselection {
    min-width: 90%;
    min-height: 50px;
    color:black;
    border:none;
    font-size:15px;
}
.regionselection-sm {
    margin: 5px;
    padding: 5px;
    min-width: 90%;
    min-height: 45px;
    color: black;
}
.province-item {
    margin-top: 30px;
    margin-bottom: 18px;
}
.city-item {
    margin-bottom: 12px;
}
.county-list {
    margin-bottom: 12px;
}
.county-item {
    margin-right: 10px;
}

/* for ranking */
.ranking {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    width: 100%;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.2s;
    background: #fff;
}

    .ranking-item:hover {
        transform: translateX(10px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

.rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.rank-1 {
    background: #ffd700;
    color: white;
}

.rank-2 {
    background: #c0c0c0;
    color: white;
}

.rank-3 {
    background: #cd7f32;
    color: white;
}

.rank-4, .rank-5, .rank-6, .rank-7, .rank-8, .rank-9, .rank-10 {
    background: #eee;
    color: #666;
}

.user-info {
    flex-grow: 1;
}

.user-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.user-description {
    color: #666;
    font-size: 0.9em;
}

.score {
    font-weight: bold;
    color: #333;
    margin-left: 20px;
}