.privacy_policy-dialog {
    background-color: white;
    padding: 40px;
    border: 1px solid #ccc;
    width: 70%;
    min-height: 500px;
    
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    &::backdrop {
        backdrop-filter: brightness(0.4);
    }

    h2 {
        text-align: center;
        margin-bottom: 40px;
        color: var(--primary-color);
    }
    p {
        color: var(--text-color);
        line-height: 1.2rem;
        font-size: clamp(0.7rem, 0.6667rem + 0.1333vw, 0.8rem);
        text-align: justify;
        margin-bottom: 15px;

        a {
            text-decoration: none;
            color: var(--accent-color);
            font-weight: 500;
            outline: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        table-layout: auto;

        td {
            padding: 10px;
            text-align: left;
            border: 1px solid #ddd;
            color: var(--text-color);
        }

        td:first-child {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        td:last-child {
            white-space: normal;
            word-wrap: break-word;
        }
    }
}