﻿.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}




    /* Chat containers */
#chat .container {
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    background-color: white;
    padding: 10px;
    width: inherit;
    max-width: 100vw;
    word-wrap: break-word;
    margin: 0;
    margin-top: 0.6rem;
}

#chat .sender {
    font-size: 0.8em;
    font-weight: bold;
}

/* Darker chat container */
#chat .darker {
    background-color: #64b5f6;
    word-wrap: break-word
}

/* Clear floats */
#chat .container::after {
    content: "";
    clear: both;
    display: table;
}

/* Style images */


    /* Style the right image */
    #chat .container img.right {
        float: right;
        margin-left: 100px;
        margin-right: 0;
    }

/* Style time text */
#chat .time-right {
    float: right;
}

/* Style time text */
#chat .time-left {
    float: left;
}
