@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: 10px 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;
}

input:invalid, select:invalid , textarea:invalid {
	border: 1px solid #2C9219;
	border-top: 3px solid #2C9219;
}

/* 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;
      color: #6c757d;
		align-content: center;
    }

    /* 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: -ms-grid; /* IE10+ */
	  display: grid;
	  -ms-grid-columns: repeat(auto-fit, minmax(250px, 1fr));
	  grid-template-columns: repeat(auto-fit, minmax(250px, 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;
      color: #6c757d;
    }


    /* 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;}
	
    }
@media (max-width: 651px) {
	div.card {
max-width: 90vw;	
}
}