         main {
            width: auto;
            padding: 20px 20px; 
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: radial-gradient(circle at top right, #2c5364, #020617);
            color: #ffffff;
            line-height: 1.6;
            text-align: center;
        }
        .room h2{
        margin: 30px 0px;
        font-size: 40px;
        font-weight: 800;
        color: #c4f1fa;
        }
        .search-wrapper{
          position: sticky;
          top: 20px;
          z-index: 100; 
          margin-bottom: 30px;
        }
        input{
        width: 100%;
            padding: 18px 25px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            color: white;
            font-size: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            outline: none;
            transition: 0.3s;
          
        }
        .doc-row {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 16px 24px;
            display: flex;
            margin: 10px 0px;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .doc-row:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .doc-main { display: flex;
        align-items: center;
        gap: 15px; 
        flex: 1; 
        }
        .file-icon { 
            font-weight: 800; 
            color: #38bdf8; 
            font-size: 1.0rem; 
            background: rgba(56, 189, 248, 0.2); 
            padding: 5px 8px; 
            border-radius: 6px; 
        }

        .file-name { 
            font-weight: 500; 
            font-size: clamp(1.0rem, 1.5vw, 1.05rem);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .view-btn {
            background: #38bdf8;
            color: #020617;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
            transition: 0.2s;
        }

        .view-btn:hover { background: #fff; transform: scale(1.05); }

        /* MOBILE & TABLET ADAPTATION */
        @media (max-width: 768px) {
            .doc-row {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                gap: 15px;
            }

            .doc-main { width: 100%; }

            .view-btn {
                width: 100%;
                padding: 14px;
                text-align: center;
            }
        }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .hidden { display: none !important; }