.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

form.add_user {
  display: flex;
  flex-direction: column;
  width: 50%;
}

label,
input {
  margin-bottom: 10px;
}

input[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 3rem;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
}

.dashboard-container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 20%;
  background: #fff;
  /* Add more styles for the sidebar */
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}

.main-content {
  width: 80%;
  padding: 20px;
}

.stats,
.activity {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;

  /* Add more styles for the content sections */
}

/* You can add more detailed styling for each part of the layout */

.sidebar-item {
  width: 100%;
  padding: 20px;
  padding-left: 40px;
}

.sidebar-item.active {
  background: #f9f9f9;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid transparent;
}

th {
  background-color: #f2f2f2;
  color: #333;
}

tr:hover {
  background-color: #ddd;
}
tr {
  border: none;
}
.btn {
  background: #000;
  padding: 10px 30px;
  color: #fff;
  margin-bottom: 3rem;
}
a {
  text-decoration: none;
}

.notice {
  background: black;
  padding: 5px;
  color: white;
  margin-bottom: 2rem;
}
.notice a {
  color: red;
}
a.sign-out {
  background: black;
  color: white;
  padding: 10px 50px;
  border-radius: 10px;
  font-size: 14px;
}

.addr-sec {
    display: flex;
    justify-content: space-between;
}
.addr-sec div {
    display: flex;
    flex-direction: column;
        width: 48%;
}


input#name, input#secretKey, input#accessKey, input#zip_code, input#state, input#city, input#street_address, input#email, input#phone, select#number, select#product_id, input#metered_sip_trunk_usage, input#cloud_server_hosting_subscription {
    height: 40px;
    padding: 2px 20px;
    outline: none;
}
input#name:focus, input#secretKey:focus, input#accessKey:focus, input#zip_code:focus, input#state:focus, input#city:focus, input#street_address:focus, input#email:focus, input#phone:focus, select#number:focus, select#product_id:focus, input#metered_sip_trunk_usage:focus, input#cloud_server_hosting_subscription:focus {
    border: 1px solid #000;
}
label {
    margin-top: 1rem;
}

input[type="submit"] {
    background-color: #000;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 3rem;
}
input[type="submit"]:hover {
    background-color: #303030;
}
small.form-text {
    font-size: 15px !important;
    color: #afafaf;
}

select#number, select#product_id, select#product_fixed_charge_id {
    height: 48px !important;
        padding: 2px 20px;
    outline: none;
    margin-bottom: 10px;
}