.toppest {
   background: transparent linear-gradient(90deg, #006199 0%, #00416c 74%, #00406a 100%) 0% 0% no-repeat padding-box;
   font-weight: 500;
}

.toppest .container {
   max-width: 1140px;
   margin: 0 auto;
}

.tableItems:last-child {
   border: none !important;
}
.login-wrapper {
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
}
.form {
   padding: 30px;
   background: #fff;
   box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
   border-radius: 10px;
}
.form h2 {
   text-align: center;
   font-size: 24px;
   margin: 0 0 20px;
}
.form input {
   border: 1px solid #eee;
   padding: 10px;
   margin: 0 0 20px;
}
.form button {
   background: #f1592a;
   color: #fff;
   padding: 10px 30px;
   width: 100%;
}
.form button:hover {
   background: #58585a;
   color: #fff;
   padding: 10px 30px;
   width: 100%;
}

/* Suggestion Modal Styles */
#suggestionModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#suggestionModal .bg-white {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 66.666667%;
    max-height: 90vh;
    overflow-y: auto;
}

#suggestionModal .flex {
    display: flex;
}

#suggestionModal .justify-between {
    justify-content: space-between;
}

#suggestionModal .items-center {
    align-items: center;
}

#suggestionModal .mb-4 {
    margin-bottom: 1rem;
}

#suggestionModal .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

#suggestionModal .font-bold {
    font-weight: 700;
}

#suggestionModal .text-gray-500 {
    color: #6B7280;
}

#suggestionModal .hover\:text-gray-700:hover {
    color: #374151;
}

#suggestionModal .w-full {
    width: 100%;
}

#suggestionModal .block {
    display: block;
}

#suggestionModal .mt-6 {
    margin-top: 1.5rem;
}

#suggestionModal .pl-4 {
    padding-left: 1rem;
}

#suggestionModal .mb-1 {
    margin-bottom: 0.25rem;
}

#suggestionModal .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#suggestionModal .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

#suggestionModal .rounded-md {
    border-radius: 0.375rem;
}

#suggestionModal input[type="text"],
#suggestionModal input[type="email"],
#suggestionModal textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
}

#suggestionModal textarea {
    min-height: 100px;
    resize: vertical;
}

#suggestionModal .gap-4 {
    gap: 1rem;
}

#suggestionModal .bg-gray-500 {
    background-color: #6B7280;
}

#suggestionModal .bg-orange-500 {
    background-color: #F1592A;
}

#suggestionModal .text-white {
    color: white;
}

#suggestionModal .hover\:opacity-75:hover {
    opacity: 0.75;
}

#suggestionModal .hidden {
    display: none;
}

/* Message styles */
#suggestionMessage {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
}

#suggestionMessage.bg-green-100 {
    background-color: #D1FAE5;
    color: #065F46;
}

#suggestionMessage.bg-red-100 {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Button styles */
#suggestTopicBtn {
    margin-top: 1rem;
    background-color: #F1592A;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: opacity 0.2s;
}

#suggestTopicBtn:hover {
    opacity: 0.75;
}

/* Responsive styles */
@media (max-width: 768px) {
    #suggestionModal .bg-white {
        width: 90%;
        margin: 1rem;
    }
}