/* General body styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

/* Main container for the page */
.container {
    background-color: gray;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 700px;
}

/* Page Title */
.page-title {
    text-align: center;
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Plugin item styling */
.plugin-item {
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.plugin-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Plugin details styling */
.plugin-details {
    padding-left: 20px;
}

/* Plugin ID styling */
.plugin-id {
    font-weight: bold;
    color: #3498db;
    font-size: 16px;
}

/* Plugin name styling */
.plugin-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 18px;
}

/* Plugin type styling */
.plugin-type {
    font-style: italic;
    color: #7f8c8d;
    font-size: 16px;
}

/* Plugin version styling */
.plugin-version {
    color: #2ecc71;
    font-size: 16px;
}

/* Paragraph styling for each field */
.plugin-details p {
    margin: 8px 0;
}

/* Styling for the container of plugin items */
.plugin-item h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px;
        width: 95%;
    }

    .plugin-item {
        padding: 15px;
    }

    .plugin-id, .plugin-name, .plugin-type, .plugin-version {
        font-size: 14px;
    }

    .page-title {
        font-size: 28px;
    }
}
