
.note {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

.dd {
    font-family: 'Lobster', cursive;
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #1E90FF; 
}

strong {
    font-weight: 600;
}

ul {
    list-style-type: none;
    margin-top: 10px;
}

li {
    margin: 10px 0;
}

header h1 {
    text-align: center;
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    margin: 40px 0 20px;
    color: #003366; 
}

.fetched-data-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

.fetched-workshop-card {
    background-color: #fff;
    border-radius: 10px;
    width: 48%;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 30px;
}

.fetched-workshop-card:hover {
    transform: translateY(-5px);
}

.fetched-workshop-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #003366; 
}

.fetched-workshop-description,
.fetched-workshop-requirements,
.fetched-workshop-fees,
.fetched-workshop-country {
    font-size: 1.0em;
    margin: 8px 0;
}






.fetched-workshop-date {
    margin: 10px 0;
    color: #555;
    font-style: normal;
    font-weight: normal; 
}

.fetched-workshop-warning {
    font-weight: bold;
    color: #e74c3c; 
    margin: 10px 0;
    font-style: normal; 
}

.fetched-workshop-partners {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fetched-workshop-partner {
    background: #e9ecef;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 150px;
}




.fetched-register-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1E90FF; 
    color: white;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.fetched-register-btn:hover {
    background-color: #4682B4; 
}




@media screen and (max-width: 768px) {
    .fetched-workshop-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .fetched-data-container {
        padding: 0 10px;
    }

    .fetched-workshop-partners {
        justify-content: center;
    }
}

.fee-free {
    color: #16a34a;
    font-weight: 700;
    background: #dcfce7;
    padding: 3px 8px;
    border-radius: 6px;
}

.fee-paid {
    color: #333;
    font-weight: 500;
}


    
    
    
    
    
    
    
    
    
    