body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #ffffff;
}

.tab-container {
    width: 85%;
    bbackground: #ffffff;
    bbox-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}
#tab1 {
    background: #ceddff;
}

#tab2 {
   background: #fff4ce;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    border: none;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.tab.active {
    background: #f1f1f1;
    font-weight: bold;
    border-bottom: 2px solid #007BFF;
}

.tab2.active {
    background: #fff4ce;
    font-weight: bold;
    border-bottom: 2px solid #007BFF;
}

.tab:hover {
    background: #e7e7e7;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #007BFF;
    font-size: 16px;
}

ul li a:hover {
    text-decoration: underline;
}

