:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-purple: #bc13fe;
    --dark-bg: #484444;
    --light-bg: #ffffff;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
}
.leftPanel {
  width: 27%;
  background-color: #484444;
  padding: 0.7cm;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rightPanel {
  width: 73%;
  padding: 0.7cm;
}

.item {
  padding-bottom: 0.7cm;
  padding-top: 0.7cm;
}
.item h2{
  margin-top: 0;
}
.bottomLineSeparator {
  border-bottom: 0.05cm solid white;
}
h2 {
  font-family: 'Archivo Narrow', sans-serif;
}
.leftPanel h2 {
  color: white;
}
img {
  width: 4cm;
  height: 4cm;
  margin-bottom: 0.7cm;
  border-radius: 50%;
  border: 0.15cm solid white;
  object-fit: cover;
  object-position: 50% 50%;
}
.details {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.leftPanel .smallText,
.leftPanel .smallText,
.leftPanel .smallText span,
.leftPanel .smallText p,
.smallText a {
  font-size: 0.45cm;
}
.smallText,
.smallText span,
.smallText p,
.smallText a {
  font-family: 'Source Sans Pro', sans-serif;
  text-align: justify;
}
.contactIcon {
  width: 0.5cm;
  text-align: center;
}
.leftPanel,
.leftPanel a {
  color: #bebebe;
  text-decoration: none;
}
.leftPanel a:hover {
  color: #00ffff;
}

.skill {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.yearsOfExperience {
  width: 1.6cm;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.alignleft {
  text-align: left !important;
  width: 1cm;
}
.alignright {
  text-align: right !important;
  width: 0.6cm;
  margin-right: 0.1cm
}
.bolded {
  font-weight: bold;
}
.white {
  color: white;
}
h1 {
  font-family: 'Julius Sans One', sans-serif;
}
h1 {
  font-weight: 300;
  font-size: 1.2cm;
  transform:scale(1,1.15);
  margin-bottom: 0.2cm;
  margin-top: 0.2cm;
  text-transform: uppercase;
}
h3 {
  font-family: 'Open Sans', sans-serif;
}
.workExperience>ul>li ul {
  padding-left: 0.5cm;
  list-style-type: disc;
}
.workExperience>ul {
  list-style-type: none;
  padding-left: 0;
}
.workExperience>ul>li {
  position: relative;
  margin: 0;
  padding-bottom: 0.5cm;
  padding-left: 0.5cm;
}
.workExperience>ul>li:before {
  background-color: #b8abab;
  width: 0.05cm;
  content: '';
  position: absolute;
  top: 0.1cm;
  bottom: -0.2cm; /* change this after border removal */
  left: 0.05cm;
}
.workExperience>ul>li::after {
  content: '';
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 32 32' focusable='false'%3E%3Ccircle stroke='none' fill='%23484444' cx='16' cy='16' r='10'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  left: -0.09cm;
  top: 0;
  width: 0.35cm;
  height: 0.35cm;
}
.jobPosition {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.jobPosition span, 
.projectName span {
}
.item{
    font-size: .9em;
}
.item.bottomLineSeparator a{
    font-size: .9em;
}
body{
    font-size: 1em;
}
p{
    font-size: .9em;
}
.fa-solid,.fas {
    font-weight: 900;
}

/* Chat Window Styles */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--dark-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    padding-top: 50px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-container {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--neon-blue);
    background: rgba(0, 0, 0, 0.3);
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.chat-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-button {
    background: var(--neon-blue);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: white;
    box-shadow: 0 0 15px var(--neon-blue);
}

.message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    margin-left: auto;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.bot-message {
    background: rgba(0, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--neon-blue);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.close-button:hover {
    background: rgba(0, 255, 255, 0.1);
    color: white;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Customize scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    /*background: rgba(0, 255, 255, 0.8);*/
    background: rgba(0, 255, 255, 0.5);
}

.reopen-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:#484444;
    /*background: var(--neon-blue);
    */
    border: none;
    color: rgba(0, 255, 255, 0.5);

    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2000;
}

.reopen-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.reopen-chat-button.visible {
    display: flex;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-bottom: 15px;
    max-width: 80%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: typing-animation 1.4s infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-animation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;

    }
}
