/* Styled button for send/logout and other main actions */
.styled-btn {
    background: linear-gradient(90deg, #1e293b 0%, #18cc72 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin: 5px 0;
    box-shadow: 0 2px 8px rgba(14,165,233,0.08);
    transition: background 0.2s, transform 0.1s;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.styled-btn:hover, .styled-btn:focus {
    background: linear-gradient(90deg, #18cc72 0%, #1e293b 100%);
    transform: translateY(-1px) scale(1.01);
}
body {
    background: #000;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}