@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    color: black;
    font-family: Noto Sans JP;
    background-image: linear-gradient(#000000, #2c2c2c);
    background-size: fill;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: white;
}

.form-text{
    color: white;
}

.table th, .table td {
    vertical-align: middle;
}

.btn {	
	margin: 1rem;
}

.form-control{
	margin-left: 1.2rem;
	margin-bottom: 0.5rem;
}

.cone{
	margin-top: 1.2rem;
	margin-bottom:1.2rem;
}

.welcome{
	font-size: 1.2rem;
}

.textologin{
	margin-right:10px;
}

.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse; 
    font-size: 2.5rem; 
    line-height: 1;
}

.star-rating-input input[type="radio"] {
    display: none; 
}

.star-rating-input label {
    color: #555; 
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #ffc107; 
}

.star-rating-input input[type="radio"]:checked ~ label {
    color: #ffc107; 
}

.star-rating-display {
    color: #ffc107;
}

.review-comment {
    overflow-wrap: break-word;
    word-wrap: break-word; /* Para compatibilidade com browsers mais antigos */
    word-break: break-word;
}   