html, body {
            margin: 0;
            padding: 0;
            font-family: "Verdana";
            background-color: #111;
            color: #FFF;
        }
        .top-bar {
            background-color: #333;
            color: white;
            margin: 0;
            padding: 0 12px; 
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 48px;
            box-sizing: border-box;
        }
        .top-bar h1 {
            margin: 0;
            padding: 0;
            font-size: 18px;
            line-height: 48px;
        }

        .top-bar .actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .top-bar button {
            background: transparent;
            border: none;
            color: white;
            padding: 6px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }
        .top-bar button:hover {
            background: rgba(255,255,255,0.12);
        }
        .icon-btn {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            padding: 0;
        }
        .text {
            padding: 0px 12px;
        }   
        .btn {
            background: transparent;
            border: none;
            color: white;
            padding: 6px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            background-color: #444;
            
        }
        a {
            text-decoration: none;  
            color: #9cf;
        }
        a:hover {   
            background-color: #555;
        }
        .forummessage {
            width: 96%;
            margin: 12px;
            border-radius: 5px;
        }
        .forummessagetyping {
            width: 96%;
            margin: 12px;
            height: 200px;
        }
        .sendbtn {
            width: 36px;
            height: 36px;
            position: absolute;
            right: 12px;
            top: 60px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 25%;
        }
        .forum-messages {
            padding: 12px;
            margin: 12px;
            overflow-y: auto;
            background-color: #444;
            border-radius: 5px;
        }
        .forum-message {
            padding: 12px;
            margin: 5px;
            background-color: #555;
            border-radius: 5px;
        }
        .reply-forum-message {
            padding: 12px;
            margin: 5px;
            background-color: #994;
            border-radius: 5px;
        }
        .forumentertext {
            width: 96%;
            margin: 12px;
        }
        .lbtn {
            background-color: #666;
            box-shadow: none;
            outline: none;
            position: absolute;
            right: 8px;
            top: 8px;
            border-radius: 5px;
        }
        .replybtn {
            background-color: #666;
            box-shadow: none;
            outline: none;
            position: absolute;
            right: 8px;
            bottom: 8px;
            border-radius: 5px;
        }
        .labtn {
            background-color: #555;
            box-shadow: none;
            outline: none;
            position: absolute;
            right: 45px;
            top: 10px;
        }
        .dlbtn {
            background-color: #666;
            box-shadow: none;
            outline: none;
            position: absolute;
            right: 96px;
            top: 8px;
            border-radius: 5px;
        }
        .dlabtn {
            background-color: #555;
            box-shadow: none;
            outline: none;
            position: absolute;
            right: 133px;
            top: 10px;
        }
        .replytext {
            margin: 12px;
        }
        /* Popup background */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

/* Popup box */
.modal-content {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-content input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #333;
    color: white;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
}

#openSignup {
    margin: 12px;
}