* {
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {

  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.detailContainer {
    display: flex;
    gap: 20px;
    flex-direction: column;
    color:  #fff;
}
.detailContainer h4{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.title {
    line-height: 40px;
    font-size: 32px;
    text-align: center;
}

.eventTitle {
    border: 1px solid #ff0000;
    text-align: center;
}

.eventList {
    border: 1px solid #ff0000;
    font-weight: bold;
}

.eventListItem {
    background: #28284f;
    color: #fff;
    font-weight: normal;
    border: transparent;
    /* font-weight: bold; */
}

.eventButton {
    transition: all 1s ease-in;
}
.eventButton:hover {
    transform: scale(1.1);
}

.eventButton3 {
    border: transparent;
    /* color: #000; */
    background: #37932f;
    font-weight: bold;
    color: #fff;
    transition: all 1s ease-in;
}
.eventButton3:hover {
    font-weight: bold;
    color: #fff;
    background: #37932f;
    transform: scale(1.1);
}



.filterContainer {
    margin-bottom: 30px;
}

.buttonContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ruleImg {
    width: 40%;
    height: auto;
}

.backButton {
    position: fixed;
    top: 10px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #bebebe;
    display: flex;
    align-items: center;
    justify-content: center;
}


.upButton {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 45px;
    height: 45px;
    z-index: 5;
    border-radius: 50%;
    border: 1px solid #bebebe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 40px;
}

.event-header h1 {
    font-size: 32px;
    font-weight: bold;
}

.card-event{
    background-color: #28284f;
    color: #fff;
}

.card-event:hover{
    border: 1px solid #4f1b24;
}

.cardEventButton {
    /* background: #4f1b24; */
    background: #080b2a;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 0;
    cursor: pointer;
}
.titleList {
    color: #fff;
    /* background: #1e224d; */
    background-color: #110d2a;
    border: transparent;
    font-weight: bold;
}

.winnersContainer {
    gap: 20px;
}





@media (max-width: 1200px) {
    .backButton {
        top: 0;
        z-index: 5;
        /* left: 90%; */
        border: none;
    }
}

@media (max-width: 992px) {
    .filterContainer {
        flex-direction: column;
    }

    .buttonContainer {
        justify-content: flex-end;
    }

    .ruleImg {
        width: 100%;
        height: auto;
    }
}

.text {
    white-space: break-spaces !important;
}




@media (max-width: 540px) {
    .backButton {
        z-index: 5;
        left: 85%;
    }
}

.table-container {
      display: flex;
    }
    .table {
      flex: 1;
		
    }
    .table table {
      width: 100%;
      border-collapse: collapse;
		
    }
    .table th, .table td {
      padding: 8px;
		text-align: center;
		border: 1px solid #ccc;
    }

.container-f {
      width: 100%;
      margin: 0 auto;
      border-radius: 5px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .form-group input[type="text"], 
	.form-group input[type="number"], 
    .form-group textarea,
    .form-group input[type="file"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      resize: vertical;
    }
    .form-group button {
      padding: 10px 20px;
      background-color: #e80303;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .form-group button:hover {
      background-color: #761111;
		
    }
