.main-row {
	padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EE7203;
}
.expanded-row {
    padding: 0 0 15px 0;
}
.url a {
 	text-decoration: underline !important;
  	color: #777;
	font-size: 14px;
	font-weight: 300;
}
.info {
  	color: #777;
	font-size: 14px;
	font-weight: 300;
}
.main-content {
    flex-grow: 1;
    padding-right: 20px; /* Adjust as needed for spacing */
}

.expand-button {
    border: none;
    font-size: 16px;
    cursor: pointer;
    background-color: rgb(238, 114, 3);
    color: #fff !important;
    border-radius: 22px;
    width: 24px;
    height: 22px;
    text-align: center;
    display: table;
}



/* Default styles for the table */
table.responsive-table {
    width: 100%;
}

table.responsive-table th {
    text-align: left;
    padding: 4px;

}
table.responsive-table td {
    text-align: left;
    font-size: 14px;
    padding: 3px !important;
    border: none !important;
}

/* Media query for small screens */
@media (max-width: 768px) {
    table.responsive-table thead {
        display: none;
    }
    table.responsive-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 1px !important;
    }
    table.responsive-table tr {
        margin-bottom: 15px;
        display: block;
    }
}