body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

input, textarea {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border: none;
    border-bottom: 2px solid #ccc;
    font-family: inherit;
    font-size: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

button {
    width: 100%;
    padding: 20px 0;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

#app {
    display: none;
}

#login {
    display: none;
}

#loading {
    display: block;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

textarea {
    width: 100%;
    height: 200px;
}

nav {
    background-color: #f0f0f0;
    padding: 10px;
}

#username {
    display: none;
}

#logoutBtn {
    display: none;
}

.flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* New styles for decrypt container */
.decrypt-container {
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
}

.decrypt-container input {
    flex-grow: 1;
    padding: 8px;
}

.decrypt-container button {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.decrypt-container button:hover {
    background-color: #45a049;
}

/* Style for placeholder text */
::placeholder {
    font-family: inherit;
    font-size: inherit;
    opacity: 0.7;
}