/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header Styles */
.header {
    background-color: #003366; /* Color ajustado a lo original */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    margin-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Main content styles */
.main-content {
    padding: 40px 20px;
    text-align: center;
}

/* Course details styles */
.course-details {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.course-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.course-info {
    margin-bottom: 20px;
}

.course-label {
    font-weight: bold;
}

.course-price {
    color: #4CAF50; /* Color ajustado a lo original */
    font-weight: bold;
}

.btn-payment {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 20px;
}

.btn-payment:hover {
    background-color: #45a049;
}

/* Course modules styles */
.course-temario {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.modules {
    display: flex;
    flex-wrap: wrap; /* Permite que las tarjetas se acomoden en varias filas */
    justify-content: center; /* Centra los módulos */
    gap: 30px; /* Espacio entre tarjetas */
    padding: 0;
    list-style-type: none;
}

.module-card {
    background-color: #f4f4f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 45%; /* Hace que cada tarjeta tenga el 45% del ancho disponible */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.module-card p {
    font-size: 1em;
    color: #666;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .module-card {
        width: 48%; /* Ajuste para pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .module-card {
        width: 100%; /* Las tarjetas ocupan el 100% del ancho en pantallas pequeñas */
    }
}

/* Footer styles */
.footer {
    background-color: #003366; /* Color ajustado a lo original */
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* En tu archivo styles2.css */
.course {
    margin-bottom: 20px;
}

#pdf-viewer-php-mysql,
#pdf-viewer-python-flask,
#pdf-viewer-moodle-admin {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
}

.page {
    display: flex;
    justify-content: center;
}
