/*body {
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.7077205882352942) 0%, rgba(20, 121, 9, 0.7413340336134453) 61%, rgba(0, 212, 255, 0.4023984593837535) 100%);
    min-width: 1000px;
}*/

body {
    background: linear-gradient(90deg, rgba(232, 17, 35, 0.2) 0%, /* Lighter Microsoft Red */
    rgba(127, 186, 0, 0.3) 33%, /* Lighter Microsoft Green */
    rgba(255, 185, 0, 0.4) 66%, /* Lighter Microsoft Yellow */
    rgba(0, 164, 239, 0.3) 100%); /* Lighter Microsoft Blue */
    min-width: 1000px;
}

#webchat {
    height: 100%;
    width: 100%;
}

.webchatcontainer {
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    margin-top: 105px;
    height: 65vh;
    width: 55vw;
    min-width: 600px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Ensuring the header stays at the top */
.header {
    position: fixed; /* Fix the header at the top of the screen */
    width: 100%; /* Ensure full viewport width */
    top: 0;
    left: 0;
    height: 65px;
    display: flex; /* Use flexbox for the header */
    justify-content: space-between; /* Ensure space between the title and user profile */
    align-items: center; /* Vertically center the items */
    background: rgb(36, 36, 36);
    border-radius: 0 0 15px 15px; /* Rounded corners */
    padding: 0 20px; /* Add padding to the header */
    box-sizing: border-box; /* Prevent padding from affecting layout */
    overflow: hidden; /* Hide any overflow */
}

.titleImageContent {
    width: 100%;
    min-width: 300px;
    height: 60px;
}

/* Title image stays on the left */
.titleImage {
    height: 35px;
    margin-left: 0;
    margin-top: 12px;
}

/* Title section style - Centered */
.title {
    font-size: 1.9rem;
    font-weight: bold;
}

.subtext {
    font-size: .8rem;
}

.centerContent {
    height: 60px;
    width: 100%;
    min-width: 300px;
    padding-left: 50px;
    display: flex;
    justify-content: center;
}

.logoImageContainer {
    display: block;
    width: 50px;
    height: 60px;
    margin-top: 5px;
    margin-left: -10px;
}

.logoImage {
    height: 52px;
}

.centeredTitle {
    height: 100%;
    text-align: left;
    margin-left: 10px;
    margin-top: 5px;
    color: rgb(242, 242, 242);
    font-family: Sans-serif;
}

/* Ensure user and profile section stays within the header bounds */
.loginContentPlaceholder {
    width: 100%;
    min-width: 300px;
    height: 60px;
}

.user {
    display: flex;
    justify-content: flex-end; /* Align items to the right side */
    align-items: center; /* Vertically center the items */
    padding: 0 20px; /* Add padding to avoid clipping */
    width: auto;
    position: relative; /* Ensure this container can stack properly */
    z-index: 2000; /* Ensure the user elements are above the header */
    box-sizing: border-box; /* Avoid affecting layout with padding */
}

/* Profile dropdown that holds the greeting and icon */
.profile-dropdown {
    display: flex; /* Keep items in one line */
    align-items: center; /* Vertically align items in the center */
    position: relative; /* Allow positioning of dropdown */
    z-index: 2000; /* Make sure it�s above the header */
    margin-top: 10px; /* Adjust the margin to align it with the title */
}

/* Profile icon, make it circular and adjust its size */
.profile-icon {
    width: 30px;
    height: 30px;
    cursor: pointer; /* Pointer on hover */
    border-radius: 50%; /* Circular profile icon */
    margin-left: 10px; /* Space between text and icon */
    z-index: 2000; /* Ensure it stays above header */
}

/* Styling for the dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 35px; /* Place it below the profile icon */
    right: 0; /* Align it to the right side */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 3000; /* Ensure it stays above other elements */
    width: 150px;
    display: none; /* Hidden by default */
}

/* Links in the dropdown */
.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    z-index: 3000; /* Ensure links are clickable above other elements */
}

/* Hover effect for dropdown links */
.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* Greeting text style */
h3 {
    margin: 0;
    font-size: 16px;
    color: rgb(255, 255, 255);
    z-index: 2000; /* Keep it above the header */
}

/* Remove blue highlight on Adaptive Card buttons */
button.ac-pushButton,
button.ac-pushButton:focus,
button.ac-pushButton:active {
    background-color: transparent !important;
}

div button {
    border: none !important;
}

/* Default button style */
button.ac-pushButton {
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    border-radius: 48px;
    /* Slightly rounded edges */
    overflow: visible;
    position: relative;
    padding: 0 !important;
    /* Remove padding inside the button */
    margin: 0 !important;
    /* Remove margin around the button */
    width: auto !important;
    /* Make button width adjust to content */
    height: auto !important;
    align-self: flex-start;
}

button.ac-pushButton.style-default.ac-selectable::after {
    content: "Copy";
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    /* Show to the right with spacing */
    transform: translateY(-50%);
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
    /* Prevent line breaks */
}

/* Show tooltip on hover */
button.ac-pushButton.style-default.ac-selectable:hover::after {
    opacity: 1;
}

/* Access Denied Container */
.access-denied-container {
    background-color: white; /* White background for clean look */
    padding: 30px; /* Add padding to space the content from the edges */
    max-width: 800px; /* Limit the width of the container */
    margin: 50px auto; /* Center the container horizontally with some margin */
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif; /* Clean font */
}

/* Heading Styling */
.access-denied-container h3 {
    font-size: 24px; /* Slightly larger font for the heading */
    color: #d32f2f; /* Red color to indicate attention */
    margin-bottom: 20px; /* Space between heading and paragraph */
    font-weight: bold; /* Bold heading */
}

/* Paragraph Styling */
.access-denied-container p {
    font-size: 16px; /* Set readable font size */
    line-height: 1.5; /* Improve line spacing for better readability */
    color: #333; /* Dark gray text for good contrast */
    margin-bottom: 15px; /* Space below paragraph */
 }

/* Bolded Security Group Name */
.access-denied-container b {
    color: #f57c00; /* Highlight the security group name with an orange color */
}

/* Optional Link Styling if you have any links later */
.access-denied-container a {
    color: #1e88e5; /* Blue color for links */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the link stand out */
}

/* Hover Effect for Links */
.access-denied-container a:hover {
    text-decoration: underline; /* Underline link on hover */
}

.aiGeneratedContent {
    /* Centering */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Positioning and sizing */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    padding: 12px 24px;
    
    /* Frosted glass effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Modern typography */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
    line-height: 1.4;
    
    /* Animation */
    transition: all 0.3s ease;
    opacity: 0.8;
}

.aiGeneratedContent:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.aiGeneratedContent p {
    margin: 0;
    color: inherit;
}