.sidebar-wrapper {
    display: none;
}
.status-badge {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}

.status-badge.online {
    background-color: #28a745;
}

.status-badge.offline {
    background-color: #6c757d;
}

.loading-indicator {
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    padding: 0.5rem;
}
.sidebar-wrapper.visible {
    display: block;
}

@media (min-width: 768px) {
    .sidebar-wrapper {
        display: block;
    }
}
.contacts-panel {
    border-right: 1px solid #ccc;
    padding: 10px;
}
.contacts-header {
    margin-bottom: 10px;
}
.contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-item {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}
.contact-item:hover {
    background-color: #f0f0f0;
}
.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.messages-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.messages-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.messages-body {
    flex: 1;
    padding: 10px;
}
.message {
    max-width: 70%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.message.sent {
    background-color: #d0e7ff;
    align-self: flex-end;
    margin-left: auto;
}

.message.received {
    background-color: #f0f0f0;
    align-self: flex-start;
    margin-right: auto;
}
.message-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}
.message-input textarea {
    flex: 1;
    margin-right: 10px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.is-open {
    display: block;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
}

.close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #012970;
}


.register-container {
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.register-box {
    background-color: #161b22;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.message-box {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c9d1d9;
}
.email-form {
    display: flex;
    flex-direction: column;
}

.email-input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #30363d;
    border-radius: 5px;
    background-color: #0d1117;
    color: #c9d1d9;
    font-size: 16px;
    width: 100%;
}

.email-input::placeholder {
    color: #6e7681;
}
.continue-button {
    background-color: #238636;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.continue-button:hover {
    background-color: #2ea043;
}

.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
    color: #012970;
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}