
	/* Styling for the table container */
	.erd-table-container {
	    border: 2px solid rgb(192, 192, 192); /* Solid black border around the table */
	    display: inline-block;
	    padding: 10px 18px 10px 16px;
	    /* margin: 10px; */
	    font-size: 11px;
	    /* min-width: 200px; */
	    /* min-height:300px; */
	    width: 290px;
	}
	
	/* Styling for the table */
	.erd-table-container table {
	    border-collapse: collapse;
	    text-align: left;
	    width: 100%;
	    /* width: 400px; */
	}
	
	/* Styling for table header */
	.erd-table-container table th {
	    background-color: #f2f2f2;
	    text-align: left;
	    padding: 8px;
	}
	
	/* Styling for table data cells */
	.erd-table-container table td {
	    padding: 8px;
	    border-bottom: 1px solid #ddd;
	}

    /* Styling for arrow */
    .leader-line {
        position: absolute;
        z-index: 9001;
    }
    
   .erd-placeholder {
   		font-size:120px;
   		color:#ddd;
   }
   
   
	.erd-container {
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	    width: 100%;
	}
	
	.erd-label {
	    text-align: left;
	    margin-bottom: 4px;
	   
	}