* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: mediumpurple;
}

/* NAVBAR */
#nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    position: fixed;
    top: 2vh;
    display: flex;
    background-color: black;
    width: 250px;
    height: 40px;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
}

.button {
  outline: 0 !important;
  border: 0 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-3px);
}

.icon {
  font-size: 20px;
}

/* SPECIAL BUTTON */

#btn-wrapper {
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.animated-button {
  margin: 2vh 4vw 0px 0px;
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #ffffffb6;
  box-shadow: 0 0 0 2px #ffffffb6;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #2196F3;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:first-child {
  position: relative;
  z-index: 1;
}

.animated-button:hover {
  box-shadow: 0 0 0 5px #2195f360;
  color: #ffffff;
}

.animated-button:active {
  scale: 0.95;
}

.animated-button:hover span:last-child {
  width: 150px;
  height: 150px;
  opacity: 1;
}


/* CARDS */
#cards-container {
    margin: 10vh auto;
    max-width: 80vw;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
 width: 190px;
 height: 254px;
 background: #3405a3;
 border-radius: 15px;
 box-shadow: 0px 10px 0px 5px #100a886b;
 transition: all 0.1s;
}

.card:hover {
  box-shadow: 0px 0px 30px 10px #100a886b;
  transform: translateY(-10px);
}

.card .card-border-top {
 width: 60%;
 height: 3%;
 background: #6b64f3;
 margin: auto;
 border-radius: 0px 0px 15px 15px;
}

.card span {
 font-weight: 600;
 color: white;
 text-align: center;
 display: block;
 padding-top: 10px;
 font-size: 16px;
}

.card .job {
 font-weight: 400;
 color: white;
 display: block;
 text-align: center;
 padding-top: 3px;
 font-size: 12px;
}

.card .img {
 width: 70px;
 height: 80px;
 background: #6b64f3;
 border-radius: 15px;
 margin: auto;
 margin-top: 25px;
 background-position: center;
 background-size: cover;
}

.card button, .modal-btn {
 padding: 8px 10px;
 display: block;
 cursor: pointer;
 border-radius: 8px;
 border: none;
 margin-top: 30px;
 background: #6b64f3;
 color: white;
 font-weight: 600;
 transition: all 0.2s;
}

.disabled {
  background: rgba(255, 255, 255, 0.151) !important;
  color: rgba(255, 255, 255, 0.151) !important;
  cursor: not-allowed !important;
}

.card button:hover {
 background: #534bf3;
 transform: scale(1.1);
}

/* MODAL */
/* Modal Background */
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }

    /* Modal Box */
    .modal-content {
        background: #3405a3;
        color: white;
        padding: 30px;
        border-radius: 10px;
        width: 320px;
        position: relative;
        animation: slideDown 0.3s ease;
    }

    .modal-content h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .modal-content input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .close {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 20px;
        cursor: pointer;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes fadeOut {
        from { opacity: 1; }
        to { opacity: 0; }
    }

    @keyframes slideDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }