#profile-picture-preview {
  background-color: gray;
  width: 120px;
  height: 120px;
  margin: 20px 0px;
  border-radius: 50%;
  object-fit: cover;
  background-size: cover;
}
.user-profile-picture {
  display: none !important;
}
.layout-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.layout-card {
  position: relative;
  width: 45%;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.layout-card.selected-layout {
  border-color: #007cba;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.layout-card input[type="radio"] {
  display: none;
}

.layout-preview {
  display: flex;
  padding: 20px;
  gap: 20px;
  justify-content: space-between;
}
.layout-preview.layout2 {
  flex-direction: row-reverse;
}
.layout-preview.layout3 {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.layout-preview.layout3 h2 {
  margin: 0px;
}

.layout-preview img {
  width: 120px;
  height: 120px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 100%;
}

.layout-preview-content h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.layout-preview-content p {
  font-size: 14px;
  color: #555;
}

.layout-preview-content .button {
  display: inline-block;
  padding: 8px 12px;
  background-color: #007cba;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.layout-preview-content .button:hover {
  background-color: #005a9e;
}

@media screen and (max-width: 992px) {
  .layout-card {
    width: 100%;
  }
  .layout-preview {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

.tab-content {
    padding: 15px;
    border: 1px solid #ccc;
    border-top: none;
}