.body{
    padding: 0px;
    margin: 0px;
   
}
.main{
  margin-top: 5%;
    margin-left:12%;
    width: 1086px;
    background-color: rgb(223, 235, 231);
     
}

a{
    text-decoration: none;
    color: black;
}

/*THIS IS THE COPIED CSS FOR SO MANY BUTTON IN THE TABLE*/

    @keyframes copiedAnimation {
        0% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(-20px);
        }
    }

    .copied-message {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        animation: copiedAnimation 1s ease-out;
    }
    td button {
        cursor: pointer;
    }
    .copied-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        animation: fadeOut 2s forwards;
    }
    @keyframes fadeOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

button{
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}
#copied-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    animation: slideIn 1s ease;
}

/* Animation keyframes for slide-in */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -70%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
header {
    
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background-color: #0c326b; /* Dark blue background color */
    color: #fff; /* Text color (white) */
    border-bottom: 2px solid #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
 
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 3px;
    color: #fff; /* White text color */
}
.header-description {
    font-size: 18px;
    font-style: italic;
    color: #ddd; /* Slightly lighter description text color */
}

/* Add any additional styles you'd like for your website's header */

/* Example of a stylish logo (replace with your own image) */
.logo {
    width: 50px;
    height: 50px;
    background-image: url('your-logo.png');
    background-size: cover;
    margin-right: 10px;
}
.content-section{
    width: 100%;
    border: 2px solid;
    border-radius: 5px;
    margin-top: 12%;
    margin-right: 1000px;
    height: 1px;
    padding-bottom: 2%;
    display: flex;
    margin: 0 auto;
    height: 100%;
    background-color: #cce2f0; /* Light blue background color */
}
.content-section, h2{
    display:inline-block;
    text-align: center;
    width: 1086px;
    word-spacing: 2px;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 30px;

}
.ad-section{
    width:30%;
float: right;
}

#symbols{
    display: grid;
    grid-template-columns: repeat(10, 5fr);
    grid-gap: 10px;
    margin-right:55px; 
     
  }
  
  .symbol{
    margin-left: 5px;
    margin-bottom: 5px;
    border-radius: 8px;
    border: 1px solid #d3d3d3;
    border-color: #d3d3d3;
    background-color: #fff;
    display: inline-block;
    min-width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 55px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 2px 2px 4px 2px #bfbfbf33;
    transition: .2s;
    
}
/*info section -----------------------------*/

.info-section{
    margin-top: 0%;
width:100%;
}
.heading{
    text-align: center;
    font-size: 28px;
}
#para{
    font-size: 23px;
    margin:3%;
}
  /* Style for the table */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Style for table header cells */
th {
    background-color: #0c326b;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    border: 1px solid #fff;
}

/* Style for table data cells */
td {
    text-align: center;
    font-size: 16px;
    padding: 8px;
    border: 1px solid #ccc;
}

/* Alternate row colors for better readability */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover effect on rows */
tr:hover {
    background-color: #d4e8f7;
    cursor: pointer;
}


