﻿
/*Dammit, firefox.*/
* {
min-height: 0;
min-width: 0;
} 


#main-header {
    height: 60px;
    display: flex;
    flex-direction: row;
    padding: 5px;
    margin: 0 auto;
    background-color: #222;
}

#main-header .logo {
    background-image: url(/img/brand/passadoodle.svg);
    flex: 1 1 280px;
    background-size: auto 50px;
    background-repeat: no-repeat;
}

.single-input {
    display: flex;
    flex-direction: row;
    
}

.single-input input {
    flex: 1 1 auto;
    border-radius: 5px 0 0 5px;
    text-align: left;
    padding: 5px;
    box-shadow:rgba(0, 0, 0, 0.5) 0px 5px 5px 0px;
}

.single-input button.btn.lg {
    flex: 0 0 50px; 
    margin: 0;
    height: 50px;
    border-radius: 0 5px 5px 0;
    padding: 5px 10px; 
}

.managed-room-list {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.managed-room-list .manage-room {
    flex: 0 0 50px;
    border-radius: 5px 0 0 5px;
    text-align: left; 
    height: 50px;
    min-width: 50px;
    background-image:url(/img/manage.svg);
    background-size: 30px 30px;
    background-repeat:no-repeat;
    background-position:10px 10px;
}

.managed-room-list .play {
    flex: 1 1 auto;
    border-radius: 0 5px 5px 0;
    text-align: center; 
    height: 50px; 
    padding: 12px 10px;
}

/*
***************************************************
************Page Styles - main area*************
***************************************************
*/


body.area-main {
    background-color: #444;
    color: #efefef;
    transition: background-color ease 4.5s;
}

body.area-main footer a {
    color: #efefef;
    text-decoration: none;
}