#fw-section-custom-html-78f6f7e1-f665-4b67-87b8-78f72068fd06 {

.calendar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* optional, adds spacing */
}

}








#fw-section-custom-html-2b2e8533-9d1b-4c4c-a30a-4380e89c4253 {

body {
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px;
}

/* Wrapper to contain everything */
.cv-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Main two-column container */
.main-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.skills-section, .experiences-section {
  flex: 1;
  min-width: 400px;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.skills-section h1, .experiences-section h1 {
  text-align: center;
  margin-bottom: 20px;
}

.skill { 
  margin-bottom: 15px; 
}

.skill span { 
  display: block; 
  margin-bottom: 5px; 
}

.skill-bar {
  width: 100%;
  background-color: #ddd;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background-color: #7A5FFF;
  width: 0;
  transition: width 1s ease-in-out;
}

.skill-fill.active { 
  width: var(--width); 
}

.experience { 
  margin-bottom: 30px; 
}

.experience h3 { 
  margin-bottom: 5px; 
}

.experience .date {
  font-size: 14px;
  color: #bbb;
  display: block;
  margin-bottom: 10px;
}

.experience p { 
  margin: 0; 
  line-height: 1.5; 
}

.show-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #7A5FFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover { 
  background-color: #5b47c6; 
}

.additional-experiences {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.additional-experiences.visible {
  max-height: 3000px;
  opacity: 1;
}

/* Aux Sections (Vertical Inside Skills) */
.aux-sections {
  margin-top: 30px;
  transition: opacity 0.5s ease-out;
}

.aux-sections.collapsed {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.aux-sections:not(.collapsed) {
  opacity: 1;
  max-height: 1000px;
}

.aux-sections .education-section,
.aux-sections .languages-section {
  margin-bottom: 20px;
}

/* Initial Horizontal Aux Container (Below Main) */
.aux-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.aux-container .education-section,
.aux-container .languages-section {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.aux-container .education-section h1,
.aux-container .languages-section h1 {
  text-align: center;
  margin-bottom: 20px;
}

.education, .language {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.education h3, .language .language-name { 
  font-weight: bold; 
}

.education .date, .language .language-level {
  float: right;
  color: #bbb;
  font-size: 14px;
}

/* Desktop: Prevent Main Wrap, Ensure Two Columns */
@media (min-width: 769px) {
  .main-container {
    flex-wrap: nowrap;
  }
  
  .skills-section, .experiences-section {
    min-width: 450px;
  }
}

/* Mobile: Stack Everything Vertically */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .skills-section, .experiences-section {
    min-width: auto;
    width: 100%;
  }
  
  .aux-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .aux-container .education-section,
  .aux-container .languages-section {
    width: 100%;
  }
  
  /* Hide aux-sections on mobile (vertical versions unused) */
  .aux-sections {
    display: none !important;
  }
}
}
#fw-section-custom-html-4b248547-60c8-40ae-a883-c95b1c8731e3 {

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px; /* Some space after previous sections */
}

.education-section, .languages-section {
  flex: 1 1 400px;
  
  padding: 20px;
  border-radius: 10px;
}

.education, .language {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.education h3, .language .language-name {
  font-weight: bold;
}

.education .date, .language .language-level {
  float: right;
  color: #bbb;
  font-size: 14px;
}

}
#fw-section-custom-html-b21c638a-c4e8-49c3-88bc-dc75184e59db {

body {
  background-color: #000;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px;
}

.skills-container {
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
}

.skill {
  margin-bottom: 15px;
}

.skill span {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.skill-bar {
  width: 100%;
  background-color: #ddd;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background-color: #7A5FFF; /* That nice purple shade */
  width: 0;
  transition: width 1s ease-in-out;
}
.skill-fill {
  height: 100%;
  background-color: #7A5FFF;
  width: 0;
  transition: width 1s ease-in-out;
}
.skill-fill.active {
  width: var(--width);
}


}



#fw-section-custom-html-65858916-2061-45e6-89b4-f22bc922ac73 {

/* Reset some default browser garbage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    max-width: 1000px;
    width: 100%;
  margin: 0 auto;
}

.logo {
    width: 100px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 2rem;
    color: #aaa;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

th, td {
    text-align: left;
    padding: 1rem;
}

th {
    background-color: #2c2c2c;
    font-weight: bold;
    font-size: 1.1rem;
}

tr:nth-child(even) {
    background-color: #292929;
}

tr:hover {
    background-color: #383838;
}

a {
    color: #61dafb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
tr {
    transition: background-color 0.3s ease;
}

}

#fw-section-custom-html-48e121ed-28df-48b9-adee-9b721f543f95 {

/* Reset some default browser garbage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    max-width: 1000px;
    width: 100%;
  margin: 0 auto;
}

.logo {
    width: 100px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 2rem;
    color: #aaa;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

th, td {
    text-align: left;
    padding: 1rem;
}

th {
    background-color: #2c2c2c;
    font-weight: bold;
    font-size: 1.1rem;
}

tr:nth-child(even) {
    background-color: #292929;
}

tr:hover {
    background-color: #383838;
}

a {
    color: #61dafb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
tr {
    transition: background-color 0.3s ease;
}

}