@charset "utf-8";
/* CSS Document */
div.title {
	font-size:20px;
	font-weight: bolder;
	padding: 8px 0px;
}
a {
	text-decoration: none !important;
}
h1, h2, h3 {
	padding: 2px;
	margin: 2px;
}

.carddiv {
	margin: 20px;
	padding: 10px;
}

.button {
	padding: 5px 18px;
	border-radius: 3px;
    font-size: 14px;
	border: 0px solid;
	font-weight: bold;
	transition: background-color 0.3s;
}
a.button {
	display: block;
	margin: 10px;
	text-align: center;
}
div.button {
	width: 100px;
	text-align: center;
	margin: 5px 0px;
}

p.button {
	margin: 10px;
	padding: 8px 0px;
}

a {
	color:inherit;
}

.white { 
background-color: #FFFFFF;
	color: #333;
	border: 1px solid #333;;
}

.red {
	 background-color: #FF0004;
	color: #FFFFFF !important;
	border-color: #FFFFFF;
	border:1px solid;
}

.green {
	background-color: #289813;
	color: #FFFFFF !important;
	border-color: #FFFFFF;
	border:1px solid;
}

.orange {
	background-color:#FFA400;
	color: #fff !important;
	border-color: #FFFFFF;
	border:1px solid;
}

.blue {
	background-color: #1657E1;
	color: #fff;
	border-color: #FFFFFF;
	border:1px solid;
}

.lightblue {
	background-color: #56C2FD;
	color: #fff;
	border-color: #FFFFFF;
	border:1px solid;
}

.pink {
	background-color: #E40BF0;
	color: #fff;
	border-color: #FFFFFF;
	border:1px solid;
}
img {object-fit: cover;}

table.invoice {
	border: 0px;
	width: 600px;
}
tr.tr { padding: 3px; font-size: 16px;}

td {padding: 3px 10px;}

.paid {
	color: #17C41A;
	font-weight: bold;
	font-size: 12px;
	margin: 5px 0px;
}

.due {
	color: #FF0004;
	font-weight: bold;
	font-size: 12px;
	margin: 5px 0px;
}

.canceled {
	color: #373737;
	font-weight: normal;
	font-size: 12px;
	margin: 5px 0px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    border: none;
    cursor: pointer;
}

.dropdown:hover .dropbtn {
}

/* Dropdown menu styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}


div.containerinv {
	background-color:#f9f9f9; 
	margin: 0;
	padding: 0;
	padding-top:100px;
	padding-bottom: 50px;
	width: 100%;
	margin-bottom: 100px;
}


 input, textarea,  select {
   width: 80%;
   padding: 3px 5px;
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
	 font-size: 16px;
	 
        }

textarea {
      resize: vertical;
        }
input.readonly {
	border: 0px;
}


/* body */
 .container {
      display: flex;
      flex-wrap: wrap;
    }

   
    /* Main Content */
    .main-content {
      flex: 1;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Profile Header */
    .profile-header {
      background: #fff;
      padding: 20px;
	display: flex;
      align-items: center;
		align-content: center;
		text-align: center;
      margin-bottom: 20px;
		margin: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .profile-header img {
      width: 100px;
      height: 100px;
      margin-right: 20px;
		object-fit: cover;
    }
    .profile-header h1 {
      margin: 0;
      font-size: 1.8em;
    }
    .profile-header p {
      margin: 5px 0 0;
		align-content: center;
		font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
    }

    /* Quick Actions */
    .quick-actions {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }
    .quick-actions button, .quick-actions a {
      flex: 1;
      padding: 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1em;
      background-color: #007bff;
      color: #fff;
      transition: background-color 0.3s;
    }
    .quick-actions button:hover , .quick-actions a:hover {
      background-color: #0056b3;
    }

    /* Analytics Cards */
    .analytics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px 30px;
    }
    .analytics .card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .analytics .card h3 {
      font-size: 1.5em;
      margin: 10px 0;
    }
    .analytics .card p {
      margin: 0;
		align-content: center;
		font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
    }


    /* Responsive */
    @media (max-width: 800px) {
      
      .main-content {
        padding: 10px;
      }
      .profile-header {
        flex-direction: column;
        text-align: center;
      }
      .profile-header img {
        margin-bottom: 10px;
      }
      .quick-actions {
        flex-direction: column;
      }
		input, textarea {font-size: 16px;}
    }

/* ================================
   MODERN FORM FIELD STYLES
   (Light gray / white theme)
   ================================ */


input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
input,
textarea {
  width: 100%;
	max-width:350px; 
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  transition: all 0.25s ease;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Placeholder color */
input::placeholder,
textarea::placeholder {
  color: #999;
  opacity: 0.8;
}

/* Hover and focus effects */
input:hover,
select:hover,
textarea:hover {
  border-color: #999;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0077cc;
  box-shadow: 0 0 0 3px rgba(0,119,204,0.15);
  outline: none;
}

/* Select dropdown styling */
select {
  background-image: linear-gradient(45deg, transparent 50%, #777 50%),
                    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1.1em + 2px),
                       calc(100% - 10px) calc(1.1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
}

/* Textarea */
textarea {
  min-height: 100px;
  resize: vertical;
}


/* Readonly inputs */
input.readonly {
  background-color: #f3f3f3;
  border-color: #ddd;
  color: #666;
}

/* Validation */
input:invalid, select:invalid, textarea:invalid {
	border-left: 2px solid #e74c3c99;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}

/* Submit buttons inside forms */
form .button, 
form input[type="submit"], 
form button {
  background: #0077cc;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

form .button:hover, 
form input[type="submit"]:hover, 
form button:hover {
  background: #005fa3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  
  input, select, textarea {
    font-size: 16px;
  }

}
