:root {
    --color-main: #b490ca; /* #f17e5d; */
    --color-secondary: #d5ba08;
    --background-color-button-hover: #9475bc; /*#F58F7C;*/
    --text-color-secondary: #fbd10f;
}

/* For PDF */

@page {
    size: letter landscape;
    margin: 1cm;
    @bottom-center {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        content: counter(page) " of " counter(pages);
    }
}

@media print {
    body {
        background-color: #ffffff !important;
        margin: 0;
        padding: 0;
    }

    .header {
        margin: auto;
        text-align: center;
    }

    .header img {
        height: 30px;
    }

    .container {
        background-color: #fff;
        padding: 0px 0px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .review-key {
        border: 1px solid #ccc;
    }

    .review-item {
        font-size: 12px;
        break-inside: avoid; /* we don't want the review item content to be broken between 2 pages */
    }

    .key-title {
        font-size: 12px;
    }

    .key-section {
        display: flex;
        flex-direction: row;
        gap: 100px; /* Add space between items */
    }

    .key-item {
        flex: 1; /* Allow key-item to grow and take up available space */
        text-align: center; /* Center content within each key-item */
        box-sizing: border-box;
        padding: 10px;
        padding-left: 100px;
        padding-right: 100px;
    }

    .key-icon {
        max-width: 24px; /* Ensure the icon fits within its container */
        height: auto; /* Maintain aspect ratio */
    }

    .key-label {
        font-size: 12px;
    }

/*    .category-icon {
        margin-right: 0px;
    }*/

    .tag-text {
        /*padding: 0px 10px;*/
        margin: 0px 25px 0px 5px;
    }

    .delete-tag,
    .add-tag {
        display: none;
    }

    .add-tag select, input, button {
        display: none;
    }

    .container p {
        font-size: 12px;
    }

}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #f0f0f0;
	margin: 0;
	padding: 0;
}

a {
    color: var(--color-main);
    text-decoration: none;
}

a:focus,
a:hover {
    color: var(--color-secondary);
	transition: ease-in all 0.5s;
}

.navbar {
    display: flex;
    background: url(../images/navbar.png);
    background-color: var(--color-main);
    align-items: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.navbar-item {
    display: flex;
    align-items: center;
}

.navbar-item.logo img {
    height: 40px;
}

.navbar-item a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--text-color-secondary);
	transition: ease-in all 0.5s;
}

select#company-selector {
    margin-bottom: 0px;
    margin-right: 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #fff;
}

.navbar-item.logout {
    margin-left: auto;
    margin-right: 20px;
}

#logout {
    padding: 7px 27px;
    font-size: 17px;
    background-color: transparent;
    border: #ddd solid 2px;
    border-radius: 10px;
    color: #fff;
}

#logout:hover {
    background-color: var(--color-secondary);
    color: #fff;
    transition: ease-in all 0.5s;
}

.main-container {
    margin: 20px;
}

.container-bg {
    background:url(../images/background_square.png);
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-container {
    margin: auto;
    text-align: center;
}

/* Custom Checkboxes */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d3d3d3;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: var(--color-secondary);
    transition: ease-in all 0.3s;
}

/* When the checkbox is checked, add the background color */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-main);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* end custom checkboxes */

/* Custom Radio Buttons */

/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #d3d3d3;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio {
  background-color: var(--color-secondary);
  transition: ease-in all 0.3s;
}

/* When the radio button is checked, add the background color */
.radio-container input:checked ~ .radio {
  background-color: var(--color-main);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* end custom radio buttons */

.container {
	background-color: #fff;
	padding: 20px 30px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.form-note {
    color: #c0c0c0;
    font-size: 14px;
    margin-top: 0px;
}

/* Alerts */

/* Bootstrap Alert Styles */
.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* Tooltip */

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--color-main);
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.5s;
}

.tooltip .tooltiptextresponse {
    width: 300px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--color-main) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Company home / settings */

.form-container {
    width: 40%
}

.settings-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* end company home / settings */

.info-message-wrapper {
    display: flex;
    justify-content: center;  /* Horizontally center */
    align-items: center;      /* Vertically center */
    height: 100%;             /* Ensure the parent div fills the space */
}

.info-message {
    color: grey;
    font-size: 0.9rem;
}

.rotated {
    writing-mode: tb-rl;
    transform: rotate(-180deg);
    color: white;
    padding: 30px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    flex: 1 0 2%; /* Take 2% of the width and allow to grow/shrink */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/report-section-header.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.report-container {
    background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	display: flex;
    height: 100%; /* Ensure it takes the full height of its parent */
    width: 100%; /* Ensure it takes the full width of its parent */
    overflow: hidden; /* Prevent overflow */
    position: relative;
}

.container p {
    padding: 0px;
}
        
select, input, button, textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}

input[type="text"], input[type="email"], input[type="password"], button {
	box-sizing: border-box;
}

h1.left {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: left;
	color: #333;
}

h1.centered {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
}

h2 {
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
}

h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #333;
}

label {
	display: block;
	margin-bottom: 10px;
}

select[name="tags"] {
    width: 100%;
    overflow-y: scroll;
    font-family: 'Poppins', sans-serif;
}

select option:checked {
    background-color: var(--background-color-button-hover);
    color: white;
}

.forgot-password {
	padding: 10px;
	display: block;
	text-align: right;
	margin-top: -10px;
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--color-main);
	text-decoration: none;
}

.forgot-password:hover {
	text-decoration: underline;
}

button, input[type="submit"] {
	background-color: var(--color-main);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 16px;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
}
		
button:hover, input[type="submit"]:hover {
	background-color: var(--background-color-button-hover);
	transition: ease-in all 0.5s;
}

.add-button {
    width: auto;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-container {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.modal-content {
    margin: 0px auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Companies page */

.company-list-header, .company-item, .report-list-header, .report-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.company-list-header {
    font-weight: bold;
}

.company-column, report-column {
    flex: 1;
    padding: 5px 10px;
}

button.serious  {
    background-color: #f44336;
}

button:hover.serious  {
    background-color: #d32f2f;
}

.company-column button {
    color: white;
    border: none;
    padding: 5px 10px;
    margin-bottom: 0px;
    cursor: pointer;
    border-radius: 8px;
    width: 100px;
}

.company-column.name {
    flex-basis: 30%;
}

.company-column.id {
    flex-basis: 20%;
}

.company-column.status {
    flex-basis: 10%;
}

.company-column.date {
    flex-basis: 15%;
}

.company-column.actions {
    flex-basis: 25%;
}

/* Settings page */

select.model-dropdown {
    width: 25ch;
}

#save-button {
    width: 20%;
}

/* Reports page */

.chart {
    max-width: 800px;
}

.report-list-header {
    font-weight: bold;
}

.report-column.start-date {
    flex-basis: 7%;
}

.report-column.end-date {
    flex-basis: 7%;
}

.report-column.reputation-score {
    flex-basis: 6%;
}

.report-column.response-rate {
    flex-basis: 6%;
}

.report-column.tone-counts {
    flex-basis: 9%;
}

.report-column.category-counts {
    flex-basis: 9%;
}

.report-column.summary {
    flex-basis: 35%;
    word-wrap: break-word;
}

.report-column.tags {
    flex-basis: 15%;
    word-wrap: break-word;
}

.report-column .truncated-text, .report-column .full-text {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-column.actions {
    flex-basis: 5%;
}

.icon {
    font-size: 20px;
}

/* Scroll Up */

#scrollUp {
    bottom: 15px;
    right: 30px;
    width: 70px;
    height: 80px;
    margin-bottom: -10px;
    padding: 0 5px 20px 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
    z-index: 999;
}

#scrollUp:hover {
    margin-bottom: 0;
}

#scrollUp:before {
    background: var(--color-main);
    border-radius: 8px;
    font-family: "Font Awesome 6 Free";
    font: var(--fa-font-solid);
    font-size: 1.4em;
    font-style: normal;
    text-align: center;
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-block;
    line-height: 45px;
    content: "\f106";
    opacity: 1;
}

/* Mood Board page */

h1.report-heading {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: var(--color-main);
    font-weight: 500;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

h2.report-heading {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: var(--color-main);
    font-size: 23px;
}

.report-period {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    justify-content: flex-start; /* Justify content to the start */
    height: 100%; /* Ensure it takes the full height of its parent */
    padding: 0;
    margin: 0;
}

.report-number-big {
    font-size: 3.2rem;
    color: white;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-top: -40px;
    margin-left: auto;
    padding: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.stats-counter {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  vertical-align: middle;

}

.toggle-links {
    position: absolute;
    top: 15px;
    right: 25px;
    text-align: right;
    font-size: 1.2em;
    color: grey;
    z-index: 999;
}

.toggle-links a.disabled {
    color: var(--color-secondary);
    pointer-events: none;
}

.stats-counter sup {
    font-size: 1.5rem;
    vertical-align: super;
}

.reputation-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex: 1 0 90%;
}

.reputation-score-report-section {
    flex: 1;
    display: flex;
    justify-content: space-between; /* Evenly space sections */
    margin: 10px 20px;
    height: 100%;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.score-key-section {
    margin: auto 20px;
    width: 100%;
}

.score-key-icon {
    width: 15px;
    padding: 5px 15px;
}

.score-key-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 17px;
    border-radius: 8px;
    box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.2);
}

.score-key-label {
    font-size: 14px;
    text-align: center;
    padding: 10px 15px 10px 0px;
}

.summary-report-container {
    padding: 20px;
    display: flex;
    flex: 1 0 90%;
    flex-direction: column;
}

.summary-report-container p {
    line-height: 32px;
    padding: 0px 20px;
    font-size: 17px;
    color: #666;
}

.summary-report-container p.info-message {
    color: grey;
    font-size: 0.9rem;
}

.tone-report-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    flex: 1 0 90%;
}

.tone-report-icon {
    max-width: 190px;
    margin-bottom: 5px;
    border-radius: 350px;
    box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.2);
    background: url(../images/report-section-header.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: transform .5s;
}

.tone-report-icon:hover {
    transform: scale(1.05);
}

.category-report-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    flex: 1 0 90%;
}

.category-report-icon {
    max-width: 190px;
    margin-bottom: 5px;
    background: url(../images/report-section-header.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: transform .5s;
}

.category-report-icon:hover {
    transform: scale(1.05);
}

.empty-summary-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex: 1 0 90%;
}

/* Tags Cloud section */

.tags-report-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex: 1 0 90%;
    min-height: 400px;
}

#word-cloud-all {
    position: relative;
    height: 360px;
    width: 1200px;
}

#word-cloud-tones, #word-cloud-categories {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: 1 0 90%;
}

.filtered-word-cloud-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    flex-basis: 30%;
    position: relative;
    height: 390px;
}

.filtered-word-cloud {
    position: relative;
    height: 100%;
    width: 100%;
}

.word {
    position: absolute;
}

/* Reviews page */

/* Sorting */
.sort-section {
    background-color: #f5f5f5;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 10px;
}

.sort-section div {
    flex: 1;
    text-align: center;
}

.sort-section div label {
    font-size: 14px;
}

.sort-section input {
    width: auto;
}

/* Filters */
.review-key {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.key-section {
    display: flex;
    justify-content: space-between;
    flex-basis: 33%;
    flex-direction: column;
    align-items: center;
    min-height: 190px;
}

.key-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.key-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    width: 80%;
}

.key-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.key-icon {
    height: 24px;
    width: 24px;
    margin-bottom: 5px;
    padding: 5px 15px;
    border-radius: 8px;
}

.key-checkmark {
    top: -20px;
    left: 4px;
}

.key-label {
    font-size: 14px;
    text-align: center;
}

#filter-button {
    margin-top: 15px;
    width: 20%;
}

/* display options */

.options-section {
    background-color: #f5f5f5;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.options-section div {
    flex: 1;
    text-align: center;
}

.options-section div label {
    font-size: 14px;
}

.options-section input {
    width: auto;
}

.option-item {
    display: flex;
    justify-content: space-between;
    flex-basis: 33%;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
}

/* reviews */

.review-item {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
}

.review-row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    width: 100%;
}

.review-column {
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevent shrinking */
}

.icon-wrapper {
    padding: 5px 15px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.platform-logo {
    height: 20px;
    width: 20px;
    vertical-align: middle;
}

.star {
    color: gold;
    font-size: 16px;
    vertical-align: middle;
}

.review-column.tone {
    flex-basis: 5%;
    display: flex;
    justify-content: center;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 10px;
}

.review-column.tone .tone-icon {
    height: 24px;
    width: 24px;
    vertical-align: middle;
}

.review-column.audience {
    flex-basis: 5%;
    display: flex;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    justify-content: center;
}

.review-column.audience .audience-icon {
    height: 24px; /* Adjust as needed */
    width: 24px; /* Adjust as needed */
    vertical-align: middle;
}

button.delete {
    background-color: transparent;
    border: 0;
    color: #f5f5f5;
    width: fit-content;
    margin: 0px;
    padding: 0px;
}

button.delete:hover {
    color: #f44336;
}

.review-column.tags {
    flex-basis: 90%;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0px;
}

.tag-item {
    margin-top: 10px;
    margin-right: 10px;
    padding: 5px 15px;
    border-radius: 8px;
    background-color: #f0f0f0;
/*position: relative;*/
    display: flex;
    align-items: center;
    max-width: 100%;
    max-height: 34px;

}

.tag-text {
    white-space: nowrap; /* ensures tags remain on one line */
}

.empty-tag {
    margin-top: 10px;
    margin-right: 10px;
    padding: 5px 15px 5px 0px;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    max-height: 34px;
}

.category-icon {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.delete-tag {
    background: none;
    border: none;
    color: #000000;
    font-size: 22px;
    margin-bottom: 0px;
    cursor: pointer;
    padding: 0px 0px 0px 5px;
}

.delete-tag:hover {
    background: none;
    color: lightgrey;
}

.add-tag {
    padding-top: 10px;
    display: flex;
}

.add-tag input {
    padding: 5px;
    margin-right: 5px;
    margin-bottom: 0px;
    width: 20ch; /* this is approximately 20 characters */
    border: 1px solid #ddd;
    border-radius: 8px;
}

.add-tag select {
    margin-right: 5px;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 0px;
}

.add-tag button {
    padding: 5px 10px;
    background-color: #f5f5f5;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 0px;
    text-wrap: nowrap;
}

.review-column.platform {
    flex-basis: 10%;
    display: flex;
    justify-content: center;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.review-column.name {
    flex-basis: 38%;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

.review-column.user-stats {
    flex-basis: 40%;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #666;
    text-align: right;
}

.review-column.review-date {
    flex-basis: 12%;
    border-bottom: 1px solid #ddd;
    text-align: right;
}

.review-column.rating {
    flex-basis: 10%;
    display: flex;
    justify-content: center;
    border-right: 1px solid #ddd;
}

.review-column.review-text {
    flex-basis: 90%;
    line-height: 32px;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-item {
    max-width: 200px;
    max-height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.review-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.response-container {
    display: block; /* Default: show responses */
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    background-color: #f5f5f5;
    transition: height 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.response-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.response-text {
    margin-bottom: 10px;
}

.no-response-message {
    color: #888;
}

.suggested-response-message {
    color: #888;
    margin-bottom: 60px;
}

.generate-response-btn {
    position: absolute; /* Absolute positioning for button */
    bottom: 15px; /* Space from the bottom */
    right: 15px; /* Space from the right */
    width: 28ch;
    margin-bottom: 0px;
}

.suggested-response-message.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s steps(1, start) infinite;
}

.suggested-response-message::after {
    content: ''; /* No cursor by default */
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Users page */

.user-list-header, .user-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.user-list-header {
    font-weight: bold;
}

.user-column {
    flex: 1;
    padding: 5px 10px;
}

.user-column button {
    color: white;
    border: none;
    padding: 5px 10px;
    margin-bottom: 0px;
    cursor: pointer;
    border-radius: 8px;
    width: 100px;
}

.user-column button:hover {
    background-color: #d32f2f;
}

#company-selection {
    margin-bottom: 10px;
}

.company-list {
    position: relative;
    display: inline-block;
    width: 100%;
}

.company-list-menu {
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 1;
    max-height: 250px;
    overflow-y: auto;
    width: 100%;
    border-radius: 4px;
}

.company-list-item {
    padding: 5px;
    display: flex;
    align-items: center;
}

.company-list-item input {
    margin-right: 10px;
    width: 10%;
    margin-bottom: 0px;
}

.company-list-item:hover {
    background-color: #f9f9f9;
}

.company-label {
    font-size: 14px;
    margin-bottom: 0px;
    width: 90%;
}

/* Error Page */

.error {
    text-align: center;
}

.error-icon-container {
    margin-top: 110px;
}

.error-icon {
    max-width: 260px;
    margin-bottom: 5px;
    border-radius: 350px;
    box-shadow: 0px 1px 10px 2px rgba(0,0,0,0.2);
    background: url(../images/report-section-header.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: transform .5s;
}

.error h1 {
    font-size: 5rem;
	margin-bottom: 20px;
	color: var(--color-main);
}

.error h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #333;
}

.error p {
    font-size: 1.3rem;
}

.error a {
    font-size: 1.3rem;
}
