@charset "utf-8";
/* CSS Document */
.error-bubble {
    display: none;
    position: absolute;
    background-color: #f8d7da;
    color: #721c24;
    padding: 5px 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-top: 5px;
    z-index: 1000;
    white-space: nowrap;
}

.invalid {
    border-color: #dc3545;
    background-color: #f8d7da;
}
