body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }
  
  /* have the sidebar icons be the top 2 icons span the top 30% and the bottom ones start from the bottom and span the bottom 30% */
 /* Add this to your existing styles.css */


 .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 150px; /* Increase width to accommodate text */
    height: 100%;
    background-color: #003366;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start; /* Change to start to align items at the top */
    padding: 20px 0;
    transition: width 0.3s;
}

.sidebar.collapsed {
    width: 80px; /* Reduced width for collapsed state */
}

.sidebar .icon-text {
    display: flex;
    align-items: center;
    margin: 10px 0;
}



.sidebar .text {
    color: white;
    font-size: 12px;
    display: inline-block;
    margin-left: 10%;
}

.sidebar.collapsed .text {
    display: none; /* Hide text in collapsed state */
}

.content {
    margin-left: 200px; /* Increase margin to match sidebar width */
    transition: margin-left 0.3s;
}

.sidebar.collapsed ~ .content {
    margin-left: 50px; /* Adjust margin for collapsed state */
}


.sidebar img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.sidebar img:hover {
    transform: scale(1.1);
}

.sidebar .icon {
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    background-color: #f0f0f0;
}

.sidebar .icon:hover {
    background-color: #f9f7f7;
}

.sidebar .collapse-button {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}

.sidebar .sidebar-content {
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background-color: #003366;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}





  
  
  .content {
    margin-left: 80px;
    padding: 20px;
  }
  
  .header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 81px;
}

.header .button {
    margin-right: 10px;
}

.header-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
}

.header-network-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-left: auto;
    gap: 10px;
}
.header-dash-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#chat-header.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 70%;
    gap: 10px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashcard {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header input[type="text"] {
    margin-right: 10px;
}


  .button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button-secondary {
    background-color: white;
    color: #003366;
    border: 1px solid #003366;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
 

#secondary-pricing {
    position: absolute;
    top: 80px;
    right: 320px;
    width: 200px;
}

#daily-news {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 300px;
}

#compute-pricing {
    position: absolute;
    width: 400px;
    top: 80px;

}

#network {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 300px;
}

#r2g2 {
    position: absolute;
    margin-top: 20px;
    width: 200px;
}
/* Add the following styles to styles.css */

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
    width: 400px;
    text-align: center;
  }
  
  .popup .close {
    position: absolute;
    top: 10px;
    right: 40px;
    cursor: pointer;
  }
  
  .popup .options {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  
  .popup .tool-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .popup h2 {
    margin: 10px 0;
  }
  
  .popup .stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
  }
  
  .popup .stat {
    text-align: center;
  }
  
  .popup .capabilities {
    text-align: left;
    margin: 20px 0;
  }
  
  .popup .capabilities ul {
    list-style-type: none;
    padding: 0;
  }
  
  .popup .capabilities li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  
  .popup .checkmark {
    color: green;
  }
  
  .popup .actions {
    margin: 20px 0;
  }
  
  .popup .instructions a {
    text-decoration: none;
    color: #003366;
  }
  
  .popup .instructions a:hover {
    text-decoration: underline;
  }
  
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  
  .network-visual {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.network {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2a9cde;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.circle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    background-color: #e85858;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}

.circle:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translate(-60%, -50%);
}

.circle:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translate(90%, -50%);
}


.circle:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.line {
    position: absolute;
    background-color: #003366;
    transform-origin: center center;
}

.circle:nth-child(1) .line {
    width: 2px;
    height: 100%; /* Adjust for padding size of the circle */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.circle:nth-child(2) .line {
    height: 2px;
    width: 70%; /* Adjust for padding size of the circle */
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.circle:nth-child(3) .line {
    height: 2px;
    width: 70%; /* Adjust for padding size of the circle */
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}

.circle:nth-child(4) .line {
    width: 2px;
    height: 100%; /* Adjust for padding size of the circle */
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Add the following styles to styles.css */

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .tabs .button-secondary {
    margin: 0 5px;
  }
  
  .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .tools-grid .card {
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;

    align-items: center;
  }
  
  .tools-grid .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .tool-logo-circle {
    width: 100px;
    height: 100px;
    border: 2px dashed #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
  }
  
  .tool-logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  form label {
    font-weight: bold;
  }
  
  form input[type="text"], form button, form .upload-materials button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
  }
  
  .upload-materials {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  
  .upload-materials button {
    width: auto;
  }
  
  .button-secondary {
    background-color: white;
    color: #003366;
    border: 1px solid #003366;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button-secondary:hover {
    background-color: #f0f0f0;
  }
  
  .button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button:hover {
    background-color: #0055a5;
  }
  
  /* Add the following styles for the search bar */
  
  .search-box {
    display: block;
    width: 80%;
    padding: 10px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .search-container {
    display: inline-flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 20px;
    margin-left: 35%;
  }
  
  .search-container input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    border-right: none;
  }
  
  .search-container button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #003366;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
  }
  p {
    font-size: 1.2em;
    align-items: center;
  }
  h1 {
    font-size: 0.7em;
    font-weight: normal;
    align-items: center;
  }
  .card.selected {
    border: 2px solid red;
  }
  .button-delete-active {
    background-color: red;
    color: white;
  }
  
/* Add this to your existing styles.css */

.chat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .chat-grid .card {
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .chat-grid .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .create-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .bar {
    font-size: 75px; /* Reduced font size to decrease width if it's a text character */
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-top: -10px; /* Adjust this value to move the bar higher */
  }

  /* styles.css */

/* Profile Tabs */
.profile-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.tab-button.active {
    background-color: #0055a5;
}

.profile-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 20px;
    gap: 100px;
}

.profile-circle {
    width: 100px;
    height: 100px;
    border: 2px dashed #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#profile-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#profile-info h3, #profile-info p, #profile-info input {
    padding: 5px;
}

#profile-info.editable h3, #profile-info.editable p, #profile-info.editable input {
    border: 2px dashed red;
    padding: 5px;
}

#profile-job-label {
    margin-right: 10px;
}

#profile-job-input {
    border: none;
    outline: none;
}

.disconnect-button {
    background-color: #e85858;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.connected-accounts .account {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
    gap: 20px;
}

.connected-accounts .account img {
    width: 30px;
    margin-right: 10px;
}

.button-edit-active {
    background-color: red;
}

/* Add these styles to styles.css */

/* Tab content */
.tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  #about-me-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .about-me-controls {
    display: flex;
    gap: 20px;
  }
  
  #about-me-instructions {
    margin-top: 80px;
    width: 25%;
    font-size: small;
  }
  
  #about-me-instructions h3 {
    margin-bottom: 5px;
  }
  
  #about-me-instructions hr {
    margin: 5px 0 10px;
  }
  
  .about-me-textbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .about-me-textbox {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #forget-everything-button {
    background-color: white;
    color: red;
    border: 1px solid red;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button-secondary:hover {
    background-color: #ffe5e5;
  }
  

  
  #forgetActions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .popup .actions button {
    width: 45%;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .template-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .template-grid .card {
    width: 200px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .template-placeholder {
    width: 100%;
    height: 150px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 2px dashed #003366;
    position: relative;
  }
  
  .vertical-sections::before,
  .horizontal-sections::before,
  .four-quadrants::before,
  .plus-sign::before,
  .diagonal-split::before,
  .grid-six::before {
    content: "";
    position: absolute;
    background-color: #003366;
  }
  
  .vertical-sections::before {
    width: 20%;
    height: 100%;
    left: 33.33%;
  }
  
  .vertical-sections::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 100%;
    left: 66.66%;
    background-color: #003366;
  }
  
  .horizontal-sections::before {
    height: 20%;
    width: 100%;
    top: 33.33%;
  }
  
  .horizontal-sections::after {
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
    top: 66.66%;
    background-color: #003366;
  }
  
  .four-quadrants::before {
    width: 100%;
    height: 20%;
    top: 50%;
  }
  
  .four-quadrants::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 20%;
    left: 50%;
    background-color: #003366;
  }
  
  .plus-sign::before {
    width: 20%;
    height: 100%;
    left: 50%;
  }
  
  .plus-sign::after {
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
    top: 50%;
    background-color: #003366;
  }
  
  .diagonal-split::before {
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
  }
  
  .grid-six::before {
    width: 100%;
    height: 2px;
    top: 33.33%;
  }
  
  .grid-six::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 66.66%;
    background-color: #003366;
  }
  
  .grid-six .vertical-line {
    position: absolute;
    height: 100%;
    width: 2px;
    left: 33.33%;
    background-color: #003366;
  }
  
  .grid-six .vertical-line:nth-child(2) {
    left: 66.66%;
  }

  /* Add to styles.css 
.card.editable {
    border: 2px dashed red;
    padding: 5px;
}

.button-edit-active {
    background-color: red;
}

/* Add to styles.css 

.card, .dashcard {
    position: absolute;
}

.card.editable, .dashcard.editable {
    resize: both;
    overflow: auto;
    cursor: move;
}
*/
/* Add these styles to your existing styles.css */
.dashboard-card {
    position: absolute;
}

/* Add these styles for draggable and resizable cards */
.dashboard-card.editable {
    border: 2px dashed red;
    resize: both;
    overflow: auto;
    cursor: move;
}

