#personal-page-container {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    font-family: 'Arial', sans-serif; /* Modern and clean font */
}

#personal-page-buttons-options {
    flex-basis: 20%;
    display: flex;
    flex-direction: column;
    padding: 20px 0; /* Added padding for spacing */
}

#personal-page-contents {
    flex-basis: 80%;
    padding: 20px;
    overflow-y: auto; /* Enables scrolling for overflow */
    height: 100vh;
}

#personal-page-buttons-options button {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    background-color: #e70e0e;
    color: white;
    border-radius: 5px; /* Rounded corners for buttons */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}


#personal-page-buttons-options button:hover {
    background-color: #8c0808; /* Darker shade on hover */
}
#personal-page-buttons-options button.active {
    background-color: #8c0808; /* Same as hover color for consistency */
}

/* New styles for modern and smooth design */
.info-box {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Adds shadow for depth */
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px; /* Rounded corners for boxes */
    background-color: #f9f9f9; /* Light background for each box */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition for hover effects */
}

.info-box:hover {
    transform: translateY(-5px); /* Slight raise effect on hover */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}

.info-title {
    font-size: 28px;
    color: #333; /* Darker text for better readability */
    margin-bottom: 10px;
}

.info-detail {
    font-size: 14px;
    color: #666; /* Lighter text for details */
}
.model-image {
   
    /*float: right;*/
	/*height: 25vh;*/
}


.modelDownloadButton {
  margin-top: 8px; /* Add some space above the button */
 
  background-image: url('/uploads/files/modelDownloadButton.png');
  background-size: cover; /* Ensure the icon covers the button */
  height:30px; 
  border: 0;
  background-size: 100%; /* To fill the dimensions of container (button), or */
  
  background-size: 30px auto;
  width: 30px;
  background-color: transparent;
  display: inline-block;
  transform: translateY(25%);
}

.modelDownloadButton:hover {
	  background-color: #f0f0f0; /* Light gray background on hover */

}


.modelDownloadButton:focus{
	  outline: none; /* Remove focus outline */

}


.draftDelButton {
  margin-top: 8px; /* Add some space above the button */
 
  background-image: url('/uploads/files/draftDelButton.svg');
  background-size: cover; /* Ensure the icon covers the button */
  height:40px; 
  border: 0;
  background-size: 100%; /* To fill the dimensions of container (button), or */
  
  background-size: 40px auto;
  width: 40px;
  background-color: transparent;
  transform: translateY(-25%);
}

.draftDelButton:hover {
  background-color: #f0f0f0; /* Light gray background on hover */
}

.draftDelButton:focus {
  outline: none; /* Remove focus outline */
}

.orderPayAnotherModelBtn, .draftButton {
  display: inline-block;
  background-color: transparent;
  color: #007bff; /* Blue color */
  border: 1px solid #007bff; /* Blue border */
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px; /* Add some space above the button */
  width: 110px;
  
}

.orderPayAnotherModelBtn:hover, .draftButton:hover {
  color: #fff;
  background-color: #e70e0e; /* Light gray background on hover */
}

.orderPayAnotherModelBtn:focus, .draftButton:focus{
  outline: none; /* Remove focus outline */
}
.draftButtons{

	display: flex;
	justify-content: space-between;
	width: 100%;
}


