/* style.css */

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header style (like Facebook bar) */
.header {
    background-color: #4267B2; /* "Facebook" blue */
    color: #fff;
    padding: 12px 20px;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}

/* Main container */
.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #f0f2f5; /* Light grey background (like FB) */
    padding: 20px;
    border-radius: 8px;
}

/* Admin form style */
.upload-form {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.upload-form h2 {
    margin-bottom: 10px;
}

.upload-form input[type="file"] {
    margin-bottom: 10px;
}

.upload-form button {
    background-color: #1877F2;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.upload-form button:hover {
    background-color: #165db6;
}

/* File list style */
.file-list {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.file-list h2 {
    margin-bottom: 10px;
}

.file-list .file-item {
    margin-bottom: 15px;
    padding: 10px;
    background: #e4e6eb;
    border-radius: 5px;
}

.embed-container {
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
