/* linkomat.css */


.headline{
  font-family: 'Verdana', Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 800;
  font-size: 1.1em;
  color: #000070;
/*  white-space: nowrap; */
}

p
{
	font-family: 'Verdana', Helvetica, Arial, sans-serif;
}

 /* Style inputs, select elements and textareas */
input[type=text], input[type=password], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}



/* Style the label to display next to the inputs */
label {
  font-family: 'Verdana', Helvetica, Arial, sans-serif;
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-size: 0.9em;
}

/* Style the submit button */
input[type=submit] {
  font-family: 'Verdana', Helvetica, Arial, sans-serif;
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  margin-top: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=checkbox] { 
  vertical-align: middle; 
  position: relative; 
  bottom: 1px; 
} 
          
label { 
  display: block; 
} 


input.open_link
{
	width: 25%;
	float: none;	
}

input.new_link
{
	background-color: #046DAA;
}


button.textcopy {
  font-family: 'Verdana', Helvetica, Arial, sans-serif;
  background-color: #046DAA;
  color: white;
  padding: 5px 10px;
  margin-top: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

button.data_del {
  font-family: 'Verdana', Helvetica, Arial, sans-serif;
  background-color: #AA5D04;
  color: white;
  padding: 5px 10px;
  margin-top: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}




/* Style the container */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.container_red {
  border-radius: 5px;
  background-color: #ffe0e0;
  padding: 20px;
}

.container_green {
  border-radius: 5px;
  background-color: #e0ffe0;
  padding: 20px;
}

.header {
  float: left;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;

}

.footer {
  float: right;
  text-align: center;
  width: 100%;
  margin-top: 6px;
  color: #E0E0E0;
  font-size: 0.8em;
}

a { font-family: 'Verdana', Helvetica, Arial, sans-serif; color: #C0C0C0; text-decoration: none; }
a:hover { text-decoration:underline; }


/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}

.col-30 {
  float: left;
  width: 30%;
  margin-top: 6px;
padding-right: 10px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.col-100 {
  float: left;
  width: 100%;
  margin-top: 6px;
}



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 750px) {

.container {
  margin-top: 10px;
}

  .col-25, .col-30, .col-50, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  .header, .footer {text-align:center;}
} 



