body {
    margin: 0;
    padding: 0;
}

.main-container {
    padding: 20px 32px;
    font-family: Montserrat;
    color: #333333;
}

@font-face {
    font-family: SFProText;
    font-weight: 500;
    src: url('../fonts/SFProText-Regular.ttf');
}

.top-nav-bar {
    display: flex;
    width: 100%;
    font-size: 16px;
}

.nav-link {
    margin-right: 20px;
}

a.clean {
    text-decoration: none;
    outline: none;
    color: inherit;
}

button.clean {
    appearance: none;
    border: none;
}

.rich-text-view {
    font-size: 18px;
    font-family: 'SFProText';
    color: black;
    line-height: 28px;
}

.rich-text-view p {
    margin: 0px;
    margin-bottom: 15px;
}

.rich-text-view blockquote {
    border-left: 2px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1rem;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

* {
    -webkit-font-smoothing: antialiased;
}

#network-popup {
    bottom: 20px;
    left: 10%;
    transform: translateX(-50%);
    padding: 15px 25px;
    background-color: #333;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

#network-popup.online {
    background-color: #4caf50; /* Green */
}

#network-popup.offline {
    background-color: #f44336; /* Red */
}

.grecaptcha-badge {
    visibility: hidden !important;
}