/* Daily Top3 widget styles (scoped). */

.dt3-widget {
    width: 350px;
    max-width: 100%;
    min-height: 135px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 12px 18px 12px;
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #000;
    overflow: hidden;
    box-shadow: -1px 0px 5px 2px rgb(0 0 0 / 11%);
    display: flex;
    flex-direction: column;
}

.dt3-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.dt3-widget__title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.dt3-widget__title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    white-space: nowrap;
}

.dt3-widget__link {
    font-size: 10px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dt3-widget__link:hover,
.dt3-widget__link:focus {
    color: rgb(35 29 29 / 95%);
}

.dt3-widget__count {
    background: rgb(182 57 150 / 38%);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.dt3-widget__select {
    width: 100%;
    padding: 6px 28px 6px 10px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    background: rgb(248 232 241);
    color: #c3307d;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 8px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234fc3f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
}

.dt3-widget__select:focus {
    outline: 2px solid #4fc3f7;
}

.dt3-widget__info {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-grow: 1;
    align-content: flex-start;
    margin-top: 5px;
}

.dt3-widget__item {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgb(192 50 129 / 11%);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    flex: 1;
    min-width: 80px;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.dt3-widget__item--address {
    flex: 100%;
}

.dt3-widget__icon {
    color: #4fc3f7;
    flex-shrink: 0;
    display: inline-flex;
}

.dt3-widget__icon svg {
    display: block;
}

.dt3-widget__value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dt3-widget__zalo-link {
    color: #c3307d;
    text-decoration: underline;
    font-weight: 600;
    font-size: 10px;
}

.dt3-widget__zalo-link:hover,
.dt3-widget__zalo-link:focus {
    color: #a82467;
}

@media (max-width: 420px) {
    .dt3-widget {
        width: 100%;
    }
}
