* {
    font-family: "Pixelify Sans";
}

header {
    width: 400px;
    height: 70px;
    background-color: var(--biru1);
    border: 5px solid var(--biru2);
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
    position: absolute; 
    top: 8px;          
    left: 8px;             
    right: 0;
    color: white;
}

h1 {
    text-align: center;
    margin: 17px;
}

main {
    display: block;
    width: 400px;
    height: 85vh;
    background-color: whitesmoke;
    border: 5px solid var(--biru2);
    border-top-right-radius: 10%;
    border-top-left-radius: 10%;
    overflow-y: auto; 
    padding-top: 10px; 
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 380px;
    height: 40px;
    background-color: var(--biru2);
    border: 5px solid var(--biru2);
    border-bottom-left-radius: 5%;
    border-bottom-right-radius: 5%;
    padding: 0 10px;
}

#chat {
    width: 300px;
    height: 30px;
    border-radius: 10%;
    border: 4px solid white;
}

#kirim {
    width: 60px;
    height: 30px;
    border-radius: 10%;
    background-color: var(--biru1);
    color: aliceblue;
    border-color: white; 
    cursor: pointer;
}

#kirim:hover {
    background-color: var(--biru2);
}

.message {
    padding: 10px;
    box-shadow:2px 2px 2px var(--biru2);
    margin: 5px; 
    border-radius: 10px;
    background-color: #e0e0e0;
    max-width: 70%;
    clear: both;
    text-align: left; 
    word-wrap: break-word;
    align-self: flex-end;
    
}

.from-user {
    background-color: var(--biru1);
    align-self: flex-end;
    margin-left: auto;
    text-align: right;
    color: white;
}

.from-others {
    background-color: #f1f0f0;
    align-self: flex-start;
    margin-right: auto;
    text-align: left;
}

#chatArea {
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow-y: auto;
    margin-top:55px;
}
