/* Votely minimal styling */

.votely-poll .card {
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.votely-poll .card-body {
    padding: 1.25rem;
}

.votely-poll .card-title {
    /*margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;*/
}

.votely-poll .list-group {
    display: grid;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.votely-poll .list-group-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem .75rem;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
}

.votely-poll .list-group-item:hover {
    background: #fafafa;
}

.votely-poll .form-check-input {
    width: 1rem;
    height: 1rem;
}

.votely-poll .d-grid {
    display: grid;
}

.votely-poll .btn {
    /*border: 1px solid #0d6efd;
    background: #0d6efd;
    color: #fff;
    padding: .5rem .75rem;
    border-radius: .5rem;
    cursor: pointer;*/
}

.votely-poll .btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.votely-poll .progress {
    height: 0.75rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #e9ecef;
    width: 100%;
}

.votely-poll .progress-bar {
    background-color: rgba(239, 11, 52, 1);
    height: 100%;
    transition: width .6s ease;
}

.votely-poll .alert {
    padding: .625rem .75rem;
    border-radius: .5rem;
}

.votely-poll .alert-warning {
    background: #fff3cd;
    border: 1px solid #ffecb5;
}

.votely-poll .alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
}

.votely-message {
    margin-top: 1rem;
}