/*Global styling*/
html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #e5ffff;
}

footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: whitesmoke;
  background-color: #82d5ff;
  text-align: center;
}

.container{
  width: 80%;
  margin: auto;
  overflow: hidden;
}

p {
  text-align: center;
}

/* =====================================================
Generic table styling
======================================================= */

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
}

td, th {
  border: none;
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #91cee5;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 3%;
}

.table-wrap table {
  width: 80%;
  margin: auto;
}

/*======================================================
Generic button styling
====================================================== */
.btn{
  color: #23ccff;
  cursor: pointer;
  padding: 10px 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  width: 15%;
}
.btn:hover{
  /*box-shadow: 0 4px 4px 0 rgba(190, 184, 184, 0.349);*/
  background-color: #626dff;
  color: white;
  /*border: none;*/
}

.btn-cancel {
  color: #ff1b00cc;
  cursor: pointer;
  padding: 10px 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  width: 15%;
}

.btn-cancel:hover{
  background-color: #ff1b00cc;
  color: white;
}

/*=====================================================
Header and navbar sytling
=======================================================*/
header {
  background: #82d5ff;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 50px;
  border-bottom: #ffffff 3px solid;
}

header a {
  text-decoration: none;
  color: white;
}


header nav ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

header nav li {
  float: left;
  display: inline;
  padding: 0 5px 0 5px;
}

header nav {
  float: right;
  margin-top: 10px;
  margin-right: 1%;
  font-size: 18px;
}

header .current a {
  color: #2d50ff;
  font-weight: bold;
}

header a:hover{
  color: #129cff;
  font-weight: bold;
}

.logo-t {
  float: left;
  margin-left: 10%;
}

.logo-t h1 {
  margin: 0;
  text-decoration: none;
}

.logo-p {
    width: 4%;
    height: 4%;
    position: absolute;
    left: 12%;

}

.red-span {
  color: rgb(0, 153, 255);
}

/* =================================================
Registration Form styling.
==================================================*/

.reg-forms {
  margin: 0;
  display: inline;
  font-size: 16px;
  outline: none;
  padding: 10px;
  text-align: center;
}

.reg-forms input {
  margin: 5px;
}

.reg-head {
  color: aqua;
}

/* ======================================================
Profile page styling
======================================================= */

.prof-head {
  text-align: center;
  color: #166f92;
}

#prof-info {
  text-align: center;
  color: #44a7ce;
}

#prof-note {
  text-align: center;
  padding-top: 1%;
  padding-bottom: 5%;
}


/* =======================================================
Create PDO page styling
======================================================= */

.create-info {
  text-align: center;
  color: #44a7ce;
}

.create-order {
  margin-left: 25%;
  margin-top: 5%;
}

input[name=parcel_name],input[name=recipient_name], input[name=destination], input[name=pickup_location], input[name=weight] {
  width: 65%;
  padding: 15px;
  margin: 10px 0 10px 0;
  display: block;
  font-size: 1em;
  border: 1px solid #8bb9ec;
  outline: none;
}

.order-details {
  border: blueviolet;
  margin-top: 5%;
}

.order-h {
  border: #b23850;
}



.avatar {
  width: 50%;
  height: 45%;
  position: relative;
  left: 25%;
}

#h1-index {
  font-size: 36px;
  text-align: center;
  color: #225f94;
}

#what-we-do {
  font-family: Georgia, Times, 'Times New Roman', serif;
  text-align: center;
  padding: 3%;
  font-size: 20px;
}

/*================================================
Styling the admin control page
================================================*/
#admin-note {
  text-align: center;
}

#admin-control {
  padding-top: 20px;
  padding-left: 20px;
}

/*==================================================
Styling delivery details
===============================================*/
#user-note {
  text-align: center;
}

#ask-cancel {
  text-align: center;
}

#user-control {
  text-align: center;
}

#change-d {
  text-align: center;
}

button[name=center-b] {
  margin-top: 10px;
}

#why-change-d {
  text-align: center;

}

.center-center {
  text-align: center;
  margin: 1.5%;
}

#error-output {
  color: red;
  border: 1px solid #fbbfbf;
  display: table;
  margin: 1% auto 10px auto;
  font-size: larger;
  text-align: center;
}

#success-feedback {
  color: green;
  border: 1px solid #fbbfbf;
  display: table;
  margin: 1% auto 10px auto;
  font-size: larger;
  text-align: center;
}
