/* Custom styles for Review Platform */

/* Brand Logo */
.brand-logo {
    max-height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Review buttons */
.btn-google {
    background-color: #28a745;
    color: white;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #218838;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-contact {
    background-color: #dc3545;
    color: white;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Admin area */
.admin-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

/* Login Form */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.login-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Table styles */
.table-responsive {
    overflow-x: auto;
}

/* Message alerts */
.alert-message {
    margin-bottom: 20px;
}

/* Feedback form */
.feedback-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
