body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 40px;
    background: black;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Static Matrix background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 2px,
                    rgba(0, 255, 0, 0.1) 2px,
                    rgba(0, 255, 0, 0.1) 4px);
    background-size: 100% 4px;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.nav { 
    margin: 20px 0; 
}

.nav a { 
    display: block; 
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    text-decoration: none;
    color: #0f0;
    border-radius: 4px;
    border: 1px solid #0f0;
    transition: all 0.3s ease;
}

.nav a:hover { 
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

h1, h2 { 
    color: #0f0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

a {
    color: #0f0;
}

/* Upload form styling */
.upload-form {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 5px;
    border: 1px solid #0f0;
}

.button { 
    padding: 8px 15px; 
    background: rgba(0, 255, 0, 0.2);
    color: #0f0;
    border: 1px solid #0f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover { 
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* File list styling */
.file-list {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 20px;
}

/* Table styling for file listings */
table {
    width: 100%;
    border-collapse: collapse;
    color: #0f0;
}

th, td {
    padding: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: left;
}

th {
    background: rgba(0, 255, 0, 0.1);
}

tr:hover {
    background: rgba(0, 255, 0, 0.1);
}