/*
* tmac.setup.css
* TMAC Setup dialog styles
*/

.tmac-setup, .tmac-setup-header, .tmac-setup-body, .tmac-setup-footer {
  position: absolute;
  border-radius : 3px;
  text-align : center;
  background-color : #ccc;
}
.tmac-setup {
  height : 100%;
  width: 100%;
  font-size : 1.2em;
}
.tmac-setup-header {
  top : 0em;
  height : 2em;
  width : 99%;
  margin : 2px 2px;
  padding: 6px 2px;
  background-color : steelblue;
  color : yellow;
  /* cursor : move; */
}
.tmac-setup-body {
  top : 2em;
  width : 99%;
  height : 83%;
  border : 1px solid;
  border-radius : 5px;
  margin : 5px 2px;
}
.tmac-setup-footer {
  bottom: 0;
  height : 2em;
  width : 99%;
  border : 1px solid;
  margin : 2px 2px;
  padding: 1px 2px;
  background-color : #aaa;
}
.tmac-setup-footer button {
  display : inline-block;
  font-size : 1em;
  text-decoration : none;
  padding : 1px 5px;
  margin : 2px 2px 2px 2px;
  border-radius : 4px;
  background-color : #ccc;
}
.tmac-setup-footer button:hover {
  background-color : steelblue;
}
.tmac-setup-body form {
  padding : 1em 1em;
}
.tmac-setup-body-form {
  padding : 5px 5px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr;
}
.tmac-setup-body-form label {
  text-align : right;
  padding-right : 10px;
  padding-left : 5px;
  margin-top : 3px;
}
.tmac-setup-body-form input {
  text-align : left;
  margin-right : 5px;
  margin-top : 4px;  
  border-radius : 5px;
}
.tmac-setup-body-form select {
  text-align : left;
  margin-right : 5px;
  margin-top : 4px;  
  border-radius : 5px;
}
