/*My code*/

/*reset section*/

* {
  font-family: Helvetica, Verdana, sans-serif;
/*  margin:0px; */
/*  padding:0px; */
}

/*sample to adjust/center content in browser window*/
.container {
  width:90%;
  margin:auto;
}

/* Navigation Bar (id=navbar) customization */
#navbar {
  background-color: #2f3542;
  color: #cfd3da;
  line-height: 20px;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar ul{
  padding: 0px;
  list-style:none;
}
#navbar li{
  display:inline;
}
#navbar a{
  color:#ffffff;
  text-decoration: none;
  font-size: 18px;
  padding-right: 15px;
  transition: color 0.15s ease-in-out;
}
#navbar a:hover {
  color: #70a1ff;
}
/* ----------------------------------------- */

/* Title (class=title) customization */
.title {
  background-color: rgb(255,255,255);
  line-height: 20px;
}
.title h1{
  color:#000000;
  text-decoration: none;
  font-size: 25px;
  text-align: center;
  /* padding-right: 10px; */
}
/* ----------------------------------------- */

/* Button customizations */
/* (class=button1) */
.button1{
  background-color: #e7e7e7;
  color:#333333;
  font-size: 18px;
  border: 1px solid gray;
  text-align: center;
  padding: 2px;
  /* padding-right: 10px; */
}
/* ----------------------------------------- */

/* Error Message (class=errormsg) customization */
.errormsg {
  background-color: rgb(255,255,255);
  line-height: 25px;
}
.errormsg p{
  color:#990000;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  /* padding-right: 10px; */
}
/* ----------------------------------------- */
.box-p {
  background-color: #999999;
}

.box-l {
  width: 23%;
  height: 500px;
  border-collapse: collapse;
  border: 1px solid white;
  float: left;
  background-color: #dddddd;
  color: black;
  padding:5px;
}

.box-l a {
  color: blue;
  text-decoration: none;
}

.box-l th {
  color: black;
  text-align: left;
}

.box-l td {
  color: green;
  text-align: left;
}

.box-l ul {
  /* to get rid of the bullets in front of lists */
  padding:0px;
  list-style:none;
}

.box-m {
  width: 73%;
  height: 500px;
  border-collapse: collapse;
  border: 1px solid white;
  float: left;
  background-color: #dddddd;
  color:#333333;
  padding:5px;
}

.box-m a {
  color: blue;
  text-decoration: none;
}

.box-m th {
  color: black;
  text-align: left;
}

.box-m td {
  color: gray;
  text-align: left;
}

.box-m ul {
  /* to get rid of the bullets in front of lists */
  padding:0px;
  list-style:none;
}

.box-r {
  background-color: #333333;
  color:#ffffff;
  border: 5px, red, solid;
  padding:20px;
  word-spacing: 1em;
}

.box-r ul {
  /* to get rid of the bullets in front of lists */
  padding:0px;
  list-style:none;
}

.deleteButton td {
  text-align: center;
}

.deleteButton a {
  color: red;
}

/* the delete "X" is now a CSRF-protected form button, styled to look
   like the plain link it used to be */
.inlineForm {
  display: inline;
  margin: 0;
}

.linkButton {
  background: none;
  border: none;
  padding: 0;
  color: red;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.copyBtn {
  background-color: #e7e7e7;
  color: #333333;
  font-size: 13px;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
}

#Selected {
  background-color: rgb(192,192,192);
}

/* Profile page (class=profile-page) -- a two-card layout, separate from
   .box-l since that's still used by login/signup/logout */
.profile-page {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  margin: 20px auto;
  padding: 0 5%;
}

.profile-page .card {
  flex: 1 1 320px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 24px 28px;
  box-sizing: border-box;
}

.profile-page .card h2 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #2f3542;
  border-bottom: 2px solid #f0f1f3;
  padding-bottom: 10px;
}

.profile-page label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #555555;
  margin: 16px 0 6px 0;
}

.profile-page label:first-of-type {
  margin-top: 0;
}

.profile-page input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d5d8dc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.15s ease-in-out;
}

.profile-page input:focus {
  outline: none;
  border-color: #70a1ff;
}

.profile-page button[type="submit"] {
  margin-top: 22px;
  width: 100%;
  padding: 11px;
  background-color: #2f3542;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.profile-page button[type="submit"]:hover {
  background-color: #1e2530;
}
/* ----------------------------------------- */
