    body {
        font-family: Arial, sans-serif;
        padding: 2rem;
        background: #f5f5f5;
    }

    .container {
        background: white;
        padding: 2rem;
        border-radius: 8px;
        max-width: 600px;
        margin: auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    label {
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
    }

    input[type="text"],
    input[type="url"],
    textarea,
    select,
    button {
        width: 100%;
        padding: 0.5rem;
        margin-top: 0.2rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    input[type="radio"] {
        margin-right: 5px;
    }

    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .tag {
        display: inline-block;
        background: #007bff;
        color: white;
        padding: 5px 10px;
        margin: 5px 5px 0 0;
        border-radius: 4px;
        font-size: 0.9rem;
    }

    #locationSuggestions {
        list-style: none;
        margin: 0;
        padding: 0;
        background: white;
        border: 1px solid #ccc;
        max-height: 150px;
        overflow-y: auto;
        position: absolute;
        z-index: 10;
        width: 100%;
    }

    #locationSuggestions li {
        padding: 8px;
        cursor: pointer;
    }

    #locationSuggestions li:hover {
        background: #eee;
    }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
}

th, td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

th {
    background-color: #007bff;
    color: white;
}

td a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
}

td a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }
    thead tr {
        display: none;
    }
    td {
        position: relative;
        padding-left: 50%;
    }
    td::before {
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 0.5rem;
        white-space: nowrap;
        font-weight: bold;
    }
    td:nth-of-type(1)::before { content: "ID"; }
    td:nth-of-type(2)::before { content: "URL"; }
    td:nth-of-type(3)::before { content: "Type"; }
    td:nth-of-type(4)::before { content: "Category"; }
    td:nth-of-type(5)::before { content: "Other Category"; }
    td:nth-of-type(6)::before { content: "Tags"; }
    td:nth-of-type(7)::before { content: "Location"; }
}
