/**
 *
 * STYLES FOR THE SHOP DIALOG
 *
 */

dialog::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

dialog * {
    font-family: Arial, sans-serif;
}

dialog.shop-dialog {
    width: 400px;
    border: none;
    border-radius: 8px;
    padding: 0;
    margin: auto;
    background: white;
    animation: fadeIn 0.3s ease-in-out;
}

.dialog-header {
    background: #333;
    color: #fff;
    padding: 1rem;
    font-family: "kilowattregular", serif;
    font-size: 3.25rem;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dialog-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.full-width-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    line-height: 1.5;
}

.dialog-footer {
    padding: 0.75rem;
    text-align: center;
    background-color: #eaeaea;
}

.shop-dialog button {
    background: #333;
    color: #ffffff;
    border: 0px;
    cursor: pointer;
}

.shop-dialog button:hover {
    background: rgba(51, 51, 51, 0.925);
}

.shop-dialog button:focus {
    outline: #808080FF solid 1px;
}

.shop-dialog-img {
    height: 20vh;
    object-fit: contain;
    background-repeat: no-repeat;
}

.dialog-footer button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 0px;
    border-radius: 4px;
}

.shop-dialog a {
    outline: none;
}

.shop-dialog a:focus {
    outline: none;
}

.shop-dialog .link-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #333;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    padding: 0.25rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
}

.shop-dialog .link-btn:hover {
    background: rgba(51, 51, 51, 0.925);
}

.shop-dialog .link-btn:focus {
    outline: #808080FF solid 1px;
}


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