.beta-feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.2s, background-color 0.2s;
}

.beta-feedback-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.beta-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.beta-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.beta-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.beta-close:hover {
    color: #ff0000;
}

.beta-modal-content h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.beta-form-group {
    margin-bottom: 15px;
}

.beta-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
}

.beta-stars {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

.beta-stars span.active {
    color: #ffc107;
}

.beta-pills {
    display: flex;
    gap: 10px;
}

.beta-pill {
    padding: 5px 12px;
    border-radius: 15px;
    background-color: #f1f1f1;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s, color 0.2s;
}

.beta-pill.active {
    background-color: #007bff;
    color: white;
}

.beta-form-group textarea {
    width: 100%;
    height: 80px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.beta-submit-btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.beta-submit-btn:hover {
    background-color: #218838;
}

.beta-submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.beta-toast {
    margin-top: 10px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}
