
:root {
  --a-link-color: teal;
  --a-visited-color: teal;
  --a-hover-color:  #ff5733;
  --a-active-color: orange;
}

ul {
  padding-left: 2rem;
}

#output {
    white-space: pre-wrap;
}

.email-header{
    color: #3366ff;
    margin-bottom:1rem;
}

.email-image{
    width:100%;
}

.email-note {
    display: none;
    margin:2rem 0;
    padding:2rem;
    border: 0.1rem solid black;
    border-radius: 0.6rem;
    background-color: orange;
}

.video-container {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* Small Screen */
@media only screen and (max-width: 600px) {
  article {
    display: flex;
    flex-direction: column; 
    margin: 0 auto;
    padding: 1rem; 
    max-width: 40rem;
    word-wrap: break-word;
  }
  .note {
     -moz-border-radius: 0.6rem;
     -webkit-border-radius: 0.6rem;
     background-color: #f0f7fb;
     background-image: url(../Images/icons/Pencil-48.png);
     background-position: 0.9rem 0;
     background-repeat: no-repeat;
     border: solid 0.1rem #3498db;
     border-radius: 0.6rem;
     line-height: 1.8rem;
     overflow: hidden;
     padding: 1.5rem 2rem;
  }

  
}  

/* Large Screen */
@media only screen and (min-width: 600px) {
  article {
    display: flex;
    flex-direction: column; 
    margin: 0 auto;
    padding: 2rem; 
    width: 85rem;
  }
  .note {
     -moz-border-radius: 0.6rem;
     -webkit-border-radius: 0.6rem;
     background-color: #f0f7fb;
     background-image: url(../Images/icons/Pencil-48.png);
     background-position: 0.9rem 0;
     background-repeat: no-repeat;
     border: solid 0.1rem #3498db;
     border-radius: 0.6rem;
     line-height: 1.8rem;
     overflow: hidden;
     padding: 1.5rem 6rem;
  }
  
  main {
  flex-direction: column;
  padding: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1rem;
}

input{
  border: 2px solid #ccc; /* Custom border */
  border-radius: 4px; /* Rounded corners */
  background-color: #f8f8f8; /* Light background */
  font-size: 16px; /* Font size */
  padding: 12px; /* Inner spacing */
  width: 100%;
}

textarea {
  border: 2px solid #ccc; /* Custom border */
  border-radius: 4px; /* Rounded corners */
  background-color: #f8f8f8; /* Light background */
  font-size: 16px; /* Font size */
  padding: 12px; /* Inner spacing */
  margin: 1rem;
}

.center{
  text-align: center;
}
.edit {
  color:green;
}

.delete {
  color:red;
}
