/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
}

header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.parent {
      overflow: hidden; /* Clearfix to contain floated children */
      width: 100%; /* Optional: Set parent width */
}

.left-div {
      float: left;
      padding: 10px;
      /*background-color: lightblue; /* Optional: For visibility */
    }

.right-div {
      float: right;
      padding: 10px;
      /*background-color: lightgreen;  Optional: For visibility */
    }

/* File list section */
.file-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

/* File item styling */
.file-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.file-item:hover {
    transform: translateY(-5px);
}

.file-item h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.file-item p {
    font-size: 1em;
    color: #7f8c8d;
    margin-bottom: 15px;

}

.file-item a {

	margin: 5px 5px 5px 5px;

}

/* Download button styling */
.download-btn {
    display: inline-block;
    padding: 10px 10px 10px 10px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #2980b9;
}



/* Footer styling */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #7f8c8d;
}

/* Responsive design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    .file-item {
        padding: 15px;
    }

    .download-btn {
        padding: 8px 15px;
    }
}