/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* Môj profil - šablóna */

.moj-profil-wrapper {
  display: block;
  width: 100%;
  margin: 80px 0 80px 0;

}

.moj-profil-sidebar {
 	float: left;
  max-width: 250px;
  width: 25%;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-right: 2rem;

  margin-bottom: 30px;
  box-shadow: 0 0 3px rgba(0,0,0,0.05);
}

.moj-profil-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.moj-profil-sidebar li {
  margin-bottom: 1rem;
}

.moj-profil-sidebar a {
  display: block;
  padding: 0.6rem 1rem;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.2s;
}

.moj-profil-sidebar a:hover {
  background: var(--theme-palette-color-5);
  color: #000;
}

.moj-profil-sidebar a.active {
  background: var(--theme-palette-color-6);
  color: #000;
}

.moj-profil-content {
	float: left;
	width: 70%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.moj-profil-login {
	margin: 0 auto;
	width: 400px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

.mbp-error {
  background: #f8d7da;
  padding: 1rem;
  border-radius: 6px;
  color: #842029;
  margin-top: 1rem;
}

.mbp-success {
  background: #d1e7dd;
  padding: 1rem;
  border-radius: 6px;
  color: #0f5132;
  margin-top: 1rem;
}

.change-password-form input {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.change-password-form button {
  background: #0073aa;
  color: #fff;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}