* {
    color: white;
}

body {
    background-color: #333333;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: #222;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    text-align: center;
}
.login-container h2 {
    margin-bottom: 24px;
}
.login-container .button {
    margin-top: 16px;
    width: 100%;
}

.button {
    background-color: #2CAE5C;
    border: none;
    width: 55px;
    padding: 5px 10px;
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.buttonStop {
    background-color: #2CAE5C;
    border: none;
    width: 55px;
    padding: 5px 10px;
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.buttonDelete {
    background-color: #bf0000;
    border: none;
    width: 55px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.buttonConfirm {
    background-color: #bf0000;
    border: none;
    width: 65px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.buttons {
    margin-top: 15px;
    margin-right: 25px;
    float: right;
}

.status {
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.instanceList {
    width: 40%;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.instanceList > .list > .loading {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    padding-top: 50px;
}

.instanceList > .list > .instance {
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.instanceList > .list > .instance:not(:last-child) {
    border-bottom: 1px solid #ffffff80;
}

.instanceList > .list > .instance > .info {
    float: left;
    line-height: 26px;
}

.instanceList > .list > .instance > .action {
    float: right;
}

.instanceList > .list > .instance > .action > img {
    height: 22px;
    padding-right: 10px;
    padding-left: 15px;
    margin-bottom: -6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.ip{
    font-family: 'Lucida Console', 'Courier New', monospace;
    color: #ffb000;
    background-color: #4f4f4f;
    padding: 2px;
    font-size: 14px;
    border-radius: 4px;
    margin: 2px;
    padding-left: 4px;
    padding-right: 4px;
}

@media only screen and (max-width: 768px) {
    .instanceList {
        width: 80%;
        padding-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }
}

input[type="text"] {
    color: black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #232323;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888888c8;
    border-radius: 4px;
    width: 25%;

}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#instanceName {
    font-weight: bold;
    color: red;
    font-size: 1.2em;
}
