.app {
  background-color: #f8f6f6;
  width: 100%;  
  height: 100%;
  position: absolute;
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
  top: 0;
  left: 0;
}

.app .header {
  background-color: #f65f0e;
  height: 100px;
  width: 100%;  
  display: flex;
  flex-direction: row;    
  justify-content: space-between;
  align-items: center;
  position: relative;
}


.app .logo {
  color: #ffffff;
  font-family: "Merienda", Helvetica;
  font-size: 48px;
  margin: 0 0 0 10%;
  
}

.app .menu {
  width: 30%;    
  position: relative;
  margin: 0 10% 0 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header, .menu, .logo {
  box-sizing: border-box;
}

.menu a {
  color: #ffffff;
  font-family: "Poppins-SemiBold", Helvetica;
  font-size: 20px;    
  position: relative;    
}

.content {
  display: block;  
  height: 100%;
  position: relative;
  margin: 0 0 0 10%;
}

.app .footer {
  background-color: #03D61B;
  height: 100px;  
  bottom:0;
  left:0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.copyright {
  color: #ffffff;
  font-family: "Poppins-Regular", Helvetica;
  font-size: 20px;  
  margin: 0;  
  position: absolute;  
  
}

.contact-text {
  color: #ffffff;
  font-family: "Poppins-Regular", Helvetica;
  font-size: 18px;  
  line-height: 25px;
  position: absolute;
  right: 50px;  
  top: 10%;
}

.error {
  color:red;
  box-shadow: 3px 5px 7px #532332; 
  font-size: 30px;
}

button {
  color:#fffcfc;
  background-color: #380b0b;
  font-family: "Segoe Print", Helvetica;
  font-size: 20px;  
  position: relative;
  text-align: center;
  white-space: nowrap;
  border: none; 
  outline: none;
  border-radius: 10px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 10px 10px;
}

button.sign-out {
  color:#fffcfc;
  background-color: #380b0b;
  font-family: "Segoe Print", Helvetica;
  font-size: 14px;  
  position: relative;
  text-align: center;
  white-space: nowrap;
  border: none; 
  outline: none;
  border-radius: 10px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 10px 10px;
}

button:hover {
  cursor: pointer;
}

.item span {
  margin: 0 10px;
}

.item-outer {
  position: relative;
  display: flex;
  flex-direction: row;  
}

.item-header {
  display: flex;
  flex-direction: column;
  width: 100%;  
  max-width: 60%;
  padding: 10px;
  border: 2px solid #ccc;  
  box-shadow: 2px 1px 5px;
  box-sizing: border-box;
  font-size: 16px;
}
.item-header:hover {
  background-color: #D8D8D8;
}

.item-header .item-no {  
  color: #f65f0e;
}

.item  {  
  color: grey;
}

.item .invoice-client {
  font-weight: bold;
  color: black;
}

.details {
  max-width: 50%;
}

fieldset.details-panel {  
  width: 100%;      
  padding: 20px;
  border: 2px solid #ccc;
}

fieldset.details-panel label {
  display: inline-block;
  width: 120px;
  text-align: right; 
  margin-bottom: 10px;
}

fieldset.details-panel input,
fieldset.details-panel textarea {
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  background-color: rgb(224, 218, 218);
}

fieldset.details-panel textarea {
  resize: vertical;
  height: 100px;  
}

.new {
  max-width: 70%;
}

fieldset.new-panel {
  display: flex;
  flex-direction: column;
  width: 100%;  
  max-width: 500px;  
  padding: 20px;
  border: 2px solid #ccc;
}

fieldset.new-panel label {
  display: inline-block;  
  text-align: left; 
  margin-bottom: 10px;
}

fieldset.new-panel input,
fieldset.new-panel textarea {
  width: 100%;
  max-width: 400px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;  
}

fieldset.new-panel textarea {
  resize: vertical;
  height: 100px;  
}

.user a
{
  color: #380b0b;  
  font-family: "Segoe Print", Helvetica;
  position: relative;   
  text-decoration: none;
}
.user span
{
  color: #380b0b;  
  font-family: "Segoe Print", Helvetica;
  position: relative;   
  text-decoration: none;
}