
     body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
    }

    header {
        position: relative;
        margin-bottom: 20px;
    }

    .top-right {
        position: absolute;
        top: 0;
        right: 20px;
    }

    main {
        max-width: 1200px;
        margin: 0 auto;
    }

    .row {
        display: flex;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .cell {
        padding: 10px;
        text-align: left;
        flex: 1;
    }

    .cell.three-word-id {
        flex: 0 0 auto;
        min-width: 200px;
    }

    .cell.actions {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        align-items: center;
        flex: 0 0 auto;
        min-width: 150px;
    }

    .row.header {
        background-color: #f5f5f5;
        border-bottom: 2px solid #ccc;
        font-weight: bold;
        display: flex;
        width: 100%;
    }

    .row.header .cell {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .row.header .cell.three-word-id {
        flex: 0 0 auto;
        min-width: 200px;
    }

    .row.header .cell.actions {
        flex: 0 0 auto;
        min-width: 150px;
        justify-content: flex-end;
    }

    .icon {
        display: inline-block;
        vertical-align: middle;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    a.grayed-out {
        color: #000;
        text-decoration: none;
        opacity: 0.5;
    }

    footer {
        margin-top: 20px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .toggle-icon.enabled svg {
        stroke: black;
    }

    .toggle-icon.disabled svg {
        stroke: red;
    }

    .mail-icon.disabled svg {
        stroke: gray;
    }
    
    .link-icon.disabled svg {
        stroke: gray;
    }

    .copy-button {
        padding: 8px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        position: relative;
    }

    .xcopy-icon {
        width: 24px;
        height: 24px;
        stroke: #333;
    }

    .tooltip {
        display: none;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffe0;
        color: #000;
        padding: 2px 6px;
        font-family: sans-serif;
        font-size: 12px;
        white-space: nowrap;
        border: 1px solid #ccc;
        z-index: 10;
    }

    .copy-button:hover .tooltip {
        display: block;
    }

    .hidden-url {
        display: none;
    }

    .plus-icon {
        display: inline-block;
        line-height: 24px;
    }

    .plus-icon svg {
        vertical-align: middle;
    }

    @media screen and (max-width: 600px) {
        body {
            padding: 5px;
        }

        main {
            max-width: 100%; /* Use full width on mobile */
            margin: 0; /* Remove centering margin */
        }

        .top-right {
            right: 10px;
        }

        .row {
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            padding: 5px 2px; /* Reduce padding but keep some for breathing room */
            margin: 0 auto; /* Ensure rows are centered */
        }

        .cell {
            padding: 5px 2px; /* Reduce padding to maximize space */
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .cell.three-word-id {
            flex: 0 0 auto;
            min-width: 100px; /* Further reduce for mobile to fit more content */
            font-size: 13px; /* Smaller text for better fit */
        }

        .cell.actions {
            flex: 0 0 auto;
            justify-content: flex-end;
            gap: 2px; /* Further reduce gap to fit all icons */
            min-width: auto; /* Remove min-width to let icons take natural space */
        }

        .cell.actions a, .cell.actions button {
            flex: 0 0 auto;
            margin-right: 2px; /* Reduce spacing between icons */
        }

        .row.header .cell.three-word-id {
            min-width: 100px;
            font-size: 13px;
        }

        .row.header .cell.actions {
            min-width: auto;
        }

        .row.header .cell {
            font-size: 13px;
        }

        .xcopy-icon, .icon svg {
            width: 18px; /* Further reduce icon size for mobile */
            height: 18px;
        }
    }
    
    .buttons {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        //background-color: #f8f9fa;
        background-color: #e9ecef;
        color: #3c4043;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    button:hover {
		//background-color: #e8eaed;
        background-color: #dae0e5;
    }
