.gift-card {
    display: block;
    justify-content: space-evenly;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin-top: 200px;
    margin-bottom: 20px;
}
.gift-card-header {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    height: 322px;
    margin-top: 30px;
}
.gift-card-header h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0px;
}
.gift-card-header-right {
    display: block;
    justify-content: space-evenly;
    align-items: center;
    height: 322px;
    margin: 0px;
    padding: 0 300px;
}
.gift-card-header-right button {
    width: 120px;
    height: 60px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
}
.gift-card-header-right button:hover {
    cursor: pointer;
    background-color: #9e7f7f;
}
.gift-card-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;

}
.gift-card-content-left-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.gift-card-content-left-form input, .gift-card-content-right-form input {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    padding-left: 10px;
}
.gift-card-content-left-form textarea, .gift-card-content-right-form textarea {
    width: 300px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    padding-left: 10px;
}
.gift-card-content-left-form button, .gift-card-content-right-form button {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    background-color: #cccccc;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.whole-gift-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
}
.gift-card-content-right-form {
    height: 322px;
    display: flex;
    flex-direction: column;
}
.anon input{
    width: 20px;
    height: 20px;
}
.preview-button {
    margin-top: auto;
}
.preview-button button:hover {
    cursor: pointer;
    background-color: #9e7f7f;
}
.active {
    background-color: #9e7f7f;
}
.inactive {
    background-color: #cccccc;
}
.anon p {
    font-size: 10px;
}
.preview {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    z-index: 100;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    width: 30vw;
    height: 50vh;
}
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.preview-header button {
    background-color: transparent;
    border: none;
}
.preview-header button:hover {
    cursor: pointer;
}
.preview-header i {
    font-size: 20px;
    color: black;
}
.gift-card-info {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.gift-pay {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px;
    margin: 20px;

}
.gift-pay button {
    width: 100px;
    height: 40px;
    border-radius: 5px;
    color: black;
    background-color: #cccccc;
    border: 1px solid #cccccc;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
}