*{
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    font-family: 'Quicksand';
}
h1{
    color: #2e3192;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 4rem;   
}

/* Style for the header */
.header {
    display: flex;
    justify-content: space-between; /* Space between the logo and the navigation menu */
    align-items: center;
    height: 70px;
    padding: 0 40px; /* Add some padding to the sides */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Style for the logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    max-height: 50px; /* Optional: Set a maximum height */
}

/* Style for the navigation menu */
.header ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between menu items */
    margin: 0;
    padding: 0;
}

.header ul li {
    display: inline;
}

.header ul li a {
    text-decoration: none;
    color: #43008B;
    font-family: 'Quicksand';
    font-size: 14px;
    font-weight: bold;
}
.plus{
    text-decoration: none;
    font-size: 40px;
    font-weight: bolder;
    color: #2e3192;
}

.plus:hover{
    color: #2e3192;
}
.plus:active{
    color: #2e3192;
}
.plus::after{
    color: #2e3192;
}

.add-button{
    background-color: #def5ff;
    border: #00AEEF 2px dashed;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 80%;
    max-width: 600px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-button:hover{
    background-color: #a2e2ff;
}
.add-quizz{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style for the quiz list container */
.quizz-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adds space between items */
    padding: 10px;
    align-items: center; /* Center items horizontally */
}

/* Style for each quiz item */
.quiz-item {
    background-color: #C8EBFB; 
    border-radius: 20px; 
    padding: 20px;
    text-align: left; /* Align text to the left */
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 80%;
    max-width: 600px; 
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between content and delete button */
    align-items: center; /* Center items vertically */
}

/* Hover effect for quiz items */
.quiz-item:hover {
    background-color: #a2e2ff; 
}

/* Style for the quiz name link */
.quiz-item a {
    text-decoration: none;
    color: #2e3192; /* Match the color of the quiz name */
    font-weight: bold;
}

/* Style for the question count */
.quiz-item .question-count {
    font-size: 14px; /* Smaller font size */
    color: #2e3192; /* Match the color of the quiz name */
    margin-top: 5px;
}

/* Style for the delete button */
.quiz-item button {
    padding: 5px 10px;
    background-color: #ff4d4d; /* Red background for delete button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align the button to the top-right */
}

/* Hover effect for delete button */
.quiz-item button:hover {
    background-color: #cc0000; /* Darker red on hover */
}

.delete-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A1A1A1; /* Default color */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.delete-icon svg {
    fill: currentColor; /* Use the current text color for the SVG */
}

.delete-icon:hover {
    color: red; /* Change color to red on hover */
}

.share-button{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A1A1A1; /* Default color */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}
.share-button svg {
    fill: currentColor; /* Use the current text color for the SVG */
}
.share-button:hover {
    color: #00AEEF; /* Change color to red on hover */
}