/*
this is comment syntax in CSS
*/
/*
body{
    background-color: #0f121f;
    background-image: url(stars.png);
    background-repeat-y: no-repeat;
    color: #fff;

    
}
*/
body *{
    font-family: Ubuntu;
}

h1, h2, h3, h4, h5{
    font-weight: normal;
    margin: 0;
}

p{
    margin:0
}
                        /***** Track Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
    background: darkgray;
    height: 0.25rem;
  }
  
  /******** Firefox ********/
  input[type="range"]::-moz-range-track {
    background: darkgray;
    height: 0.25rem;
  }
/*
a, a:hover, a:visited{
    color: #fff;
    text-decoration: none;
}

.wrapper{
    max-width: 960px;
    margin: 0 auto;
}
div.wrapper h1{
    text-align: center;
    margin: 100px auto;
    font-size: 2.6em;
}

header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
}
*/
/*
nav{
    justify-self: end;
}

nav li{
    display: inline-block;
    margin-left: 20px;
}

nav button{
    background: none;
    color: #fff;
    cursor: pointer;
    border: 0;
    font-size: 1em;
}
*/
.vacations{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.vacation{
    padding: 10px;
    border: 1px solid #4490D8;
    position: relative;
    padding-bottom: 40px;
}

.vacation h2{
    font-size: 1.2em;
}

.vacation .author{
    padding: 10px;
    background: #4490D8;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    color: #0f121f;
}

.vacation-detail .vacation{
    padding: 0;
}

.vacation-detail .vacation img{
    max-width: 100%;
}

.vacation-detail .vacation h2{
    text-align: center;
    margin:20px auto;
    font-size: 2em;
}

.vacation-detail .vacation p{
    text-align: center;
}

.site-form{
    margin-top: 20px;
    border: 1px solid #4490D8;
    padding:20px;
}

.site-form input, .site-form textarea{
    display: block;
    margin: 0px 0 0 0;
    padding: 1px;
}
/*This controls the links at the top*/
a.highlight{
    border: 1px solid #4490D8;
    padding: 5px;
    border-radius: 4px;
    color: #4490D8;
}

.helptext, .helptext ul{
    margin: 0 auto 20px;
    color: #bbb;
    font-size: 0.9em;
    display: block;
}

.errorlist li{
    padding: 10px;
    list-style: none;
    border: 1px solid #ff5722;
    color: #ff5722;
    margin: 10px 0;
}

.errorlist{
    padding: 0;
}

.site-form input[type="submit"]{
    background: #4490D8;
    border: 0;
    color: #fff;
    font-size: 1.2em;
    border-radius: 4px;
    margin: 10px 0;
    padding: 5px;
}
.form-text {
    margin-top: 0.25rem;
    font-size: .875em;
    color: var(--bs-secondary-color);
}
.form-select {
    padding: 0rem 2.25rem 0rem 0.375rem;
}
.footer {
    display: flex;
    justify-content: space-between;
  }
.center {
    text-align: center;
  }
.left {
   text-align: left;
  }
.right {
    text-align: right;
  }

#chat {
    top: 128px;
    bottom:115px;
    position:fixed;
    width:100%;
    overflow-y:scroll;
    padding-bottom:0px;
}

#chat .message {
    background:#efefef;
    padding:10px 20px;
    border-radius:4px;
    width:70%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    display:inline;
    float:left;
    margin:10px 10px 0;
    /*min-width:440px;*/
    max-width:440px;
    clear:both;
}

#chat .message.me {
    display:inline;
    float:right;
    background:#DCEDE0;
    color:#56A668;
}

#chat .date {
    color:#aaa;
    font-style:italic;
    font-size:12px;
}

#chat-input {
    position:absolute;
    bottom:10px;
    background:#efefef;
    width:100%;
    padding-top:20px;
    padding-bottom:20px;
}

#chat-input input {
    width:96%;
    position:left;
    float:left;
    display:inline;
    margin-left:2%;
    margin-right:2%;
    padding-left:0;
    padding-right:0;
    margin-bottom:10px;
}