#widget1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    background-image: url("bg1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5vw 0vw 6vw 0vw;
}

#widget2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    background-image: url("bg2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5vw 0vw 6vw 0vw;
}

#bg1 {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.help {
    width: 6.3vw;
}

.subtitle {
    font-size: 2.5vw;
    font-weight: 600;
    margin: 0px;
}

.subtitle1 {
    font-size: 2.0vw;
    margin: 0px;
}

.title {
    font-size: 4.5vw;
    font-weight: 600;
    margin: 0px;
    text-shadow: 3px 3px #ff0000;
}

.desc {
    font-size: 1.5vw;
    margin: 0px;
}

.salary-container {
    width: 40vw;
    height: 4vw;
    background-color: rgb(253, 247, 223);

    display: flex;
    flex-direction: row;
    align-items: center;

    font-size: 2vw;
    margin: 0px;
    gap: 0.5vw;
}

.salary-container div {
    height: 4vw;
    width: 4vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgb(253, 238, 195);
}

.salary-container div span {
    text-align: center;
    width: 100%;
}

#salary {
    border: none;
    background-color: rgb(253, 247, 223);
    width: 34.7vw;
    height: 3vw;
    font-size: 2vw;
}

#salary:focus {
    outline: none;
}

#salary-display {
    font-weight: 400;
    color: white;
    background-color: black;
    padding: 0.5vw;
}

.gold {
    display: flex;
    flex-direction: row;
    gap: 2.5vw;
    align-items: center;
}

.gold img {
    width: 5.91vw;
}

#submit {
    background-color: rgb(1, 133, 57);
    border: none;
    border-radius: 8px;
    color: white;
    width: 40vw;
    height: 5.5vw;
    font-size: 2.5vw;
}

#submit:hover {
    background-color: rgb(21, 153, 77);
}

#submit:active {
    background-color: rgb(1, 113, 37);
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 60%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(odd) {
    background-color: white;
}

tr:nth-child(even) {
    background-color: rgb(255, 238, 238);
}

.salary-col span {
    background-color: red;
    color: white;
    padding: 3px;
    margin-left: 5px;
}

.name-col {
    font-weight: 600;
}