.gpltimes-schema-voting {
    border-radius: 5px;
    display: inline-block;
    padding: 5px 10px 0px;
    background: #666;
    color: #ffffff;
    position: absolute;
    z-index: 10;
    right: 16px;
    top: 1px;
}

.gpltimes-schema-stars {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
}

.gpltimes-schema-star {
    width: 18px;
    height: 18px;
    margin-right: 2px;
    cursor: pointer;
}

.gpltimes-schema-star svg {
    width: 100%;
    height: 100%;
}

.gpltimes-schema-star svg path {
    fill: #ccc;
    transition: fill 0.2s ease;
}

.gpltimes-schema-star:hover svg path,
.gpltimes-schema-star.active svg path {
    fill: #ffcc00;
}

.gpltimes-schema-votes {
    color: #fff;
    font-size: 12px;
    margin-left: 3px;
    display: inline-block;
    vertical-align: top;
    padding-top: 1px;
}

.gpltimes-schema-message {
    font-size: 12px;
    color: #4CAF50;
    position: absolute;
    background: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    top: 100%;
    right: 0;
    margin-top: 5px;
    white-space: nowrap;
}

.gpltimes-schema-message.show {
    display: block;
}