.carousel-container {
    position: relative;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
    text-align: center;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}



.carousel-slide h3 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333;
}

.carousel-slide p {
    font-size: 1.3em;
    color: #666;
    line-height: 1.6;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 100;
    border-radius: 5px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #717171;
}

.carousel-slide a {
    text-decoration: none;
    color: inherit;
}

.carousel-container h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #f39c12;
    padding-bottom: 10px;
    display: inline-block;
}

/* Dashboard Section Styles */
.dashboard-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
}

.dashboard-container {
    width: 80%;
    margin: 0 auto;
}

.dashboard-section h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #f39c12;
    padding-bottom: 10px;
    display: inline-block;
}

.dashboard-widgets {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.widget-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    flex: 1;
    min-width: 280px; /* Adjust as needed */
    max-width: 30%; /* Adjust as needed */
    box-sizing: border-box;
}

.widget-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.widget-card p {
    font-size: 1.1em;
    color: #666;
}