/**
 * Theme Name: Edukul Child
 * Template: edukul
 * Version: 1.0
 * Description: Online Courses WordPress Theme
 * Author: Ninzio
 **/

.post-12862 > div > div:nth-child(2) > section > div > div > div > div > div > div.edukul-content-box.clearfix > div {
	text-align:center !important;
}

.edr-course {
	background:#f5f5f5 !important;
}

.edr-course .edr-course__content  {
	padding:38px 35px 40px; !important;
}

.edr_course__excerpt {
	padding-bottom:15px !important;
}

.text-align-center {
	text-align:center !important;
}

.sr7-arrows.custom {
	display:none !important;
}

.post-13409 > div > div:nth-child(3) > section > div > div > div > div > div > div > div > div > div {
	margin:0 auto !important;
	float:inherit !important;
}

@media (min-width: 992px) {
  #menu-item-19129 {
    display: none;
  }
}

/* CORSI ARTICOLI */
#course-info {
	display:none !important;
}

.course-gallery {
	text-align:center !important;
}
.single-course #course-description {
	width: 100% !important;
}

#course-program {
	display:none !important;
}

#course-description h3 {
	display:none !important; 
}

.info-meta {
	display:none !important;
}

.entry-title {
	text-align:center;
	padding-bottom:30px;
}

#course-filter {
	display:none !important;
}

.review-stars {
	color:#ff9900 !important;
}

.edr-course__price {
	display:none !important;
}

.edr_course__meta {
	display:none !important;
}
/* CSS per le tabelle dei corsi - Fondazione Mosale */

/* Stile generale per tutte le tabelle dei corsi */
.course-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

/* Header della tabella - Titolo della categoria */
.course-table .category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header delle colonne */
.course-table th {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
    border-bottom: 2px solid #e0e0e0;
}

/* Celle del corpo della tabella */
.course-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
    line-height: 1.6;
}

/* Alternanza colori delle righe */
.course-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.course-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover effect sulle righe */
.course-table tbody tr:hover {
    background-color: #e3f2fd;
    transform: scale(1.01);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Stile per la colonna del nome del corso */
.course-table .course-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05em;
    min-width: 200px;
}

/* Stile per la colonna della descrizione */
.course-table .course-description {
    color: #555;
    line-height: 1.7;
    max-width: 500px;
}

/* Responsive design */
@media (max-width: 768px) {
    .course-table {
        font-size: 0.9em;
    }
    
    .course-table th,
    .course-table td {
        padding: 10px;
    }
    
    .course-table .category-header {
        font-size: 1.2em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .course-table {
        font-size: 0.8em;
    }
    
    .course-table th,
    .course-table td {
        padding: 8px;
    }
    
    .course-table .category-header {
        font-size: 1.1em;
        padding: 12px;
    }
}

/* Animazioni */
.course-table {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stile per evidenziare corsi speciali */
.course-table .special-course {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    font-weight: 600;
}

/* Bordi arrotondati per la prima e ultima riga */
.course-table tbody tr:first-child td:first-child {
    border-top-left-radius: 8px;
}

.course-table tbody tr:first-child td:last-child {
    border-top-right-radius: 8px;
}

.course-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.course-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

