body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.tab {
    width: calc(50% - 5px);
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.tab + .tab {
    margin-left: 10px;
}

.tab.active {
    color: #28a745;
    border-bottom: 1px solid #28a745;
}

.reset-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-button i {
    stroke-width: 2px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

button:focus {
    outline: none;
}

.result {
    margin-top: 30px;
    overflow-x: auto;
    white-space: nowrap;
    width: 95%;
    margin: 0 auto;
}

.result h3 {
    text-align: left;
    font-size: 22px;
    color: #333;
    margin-top: 20px;
}

.result h3 span {
    color: #28a745;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 35px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 600px) {
    select.custom-select {
        font-size: 20px;
        padding: 12px;
        height: auto;
        line-height: 1.5;
    }
}


.link-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.link-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.link-box ul li {
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.link-box ul li span {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
}

.link-box ul li a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
    font-size: 15px;
    font-weight: 400;
    display: block;
    transition: color 0.3s ease;
}

.link-box ul li a:hover {
    text-decoration: underline;
    color: #0056b3;
}
