.reviews-txt {
    font-size: 36px;
    text-align: center;
    margin: 30px 0;
    color: #333;
    font-weight: 600;
}

.history-button {
    display: block;
    margin: 20px auto;
    background-color: #C6A561;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.history-button:hover {
    background-color: #b08f4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 165, 97, 0.3);
}

.mnenie_addpage {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin: 30px 0;
}

form {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

input[type="text"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
    border-color: #C6A561;
    outline: none;
    box-shadow: 0 0 0 2px rgba(198, 165, 97, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background-color: #C6A561;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin: 30px auto 0;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #b08f4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 165, 97, 0.3);
}

@media (max-width: 768px) {
    .reviews-txt {
        font-size: 28px;
        margin: 20px 0;
    }

    .mnenie_addpage {
        font-size: 20px;
        margin: 20px 0;
    }

    form {
        padding: 20px;
        margin: 0 15px 30px;
    }

    .history-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    button[type="submit"] {
        padding: 12px 30px;
        font-size: 15px;
    }

    .form-label {
        font-size: 15px;
    }

    input[type="text"],
    textarea,
    select {
        font-size: 14px;
        padding: 10px;
    }
} 