/* styles/logo.css */
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo .text {
    background: linear-gradient(135deg, #388E3C 30%, #43A047 100%); /* Apply the same gradient */
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
