

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(0, 0%, 15%);
}

.sharebutton {
    border: none;
    padding: 10px 20px;
    outline: none;
    overflow: hidden;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
    background-color: rgba(52, 154, 255, 0.542);
    border-radius: 5px;
    margin-right: 10px;
}

.sharebutton:hover {
    background-color: rgb(66, 101, 143);
}

.top-name {
    font-size: 16px;
    text-transform: capitalize;
    width: fit-content;
    align-self: center;
    justify-content: center;
    
    color: rgb(52, 154, 255);
    margin-left: 10px;
}

.main-pro-banner {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: auto;
    width: auto;
    padding: 1rem;
}



.lap-banner {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 100%;
     background-color: hsl(0, 0%, 15%); 
    /* padding: 16px; */
    border-radius: 12px;
    box-sizing: border-box;
}
    
.lap-main-img-3 {
    max-width: 100%;
    max-height: 100%;
    /* height: auto; */
    width: auto;
   object-fit: contain;
    
}

/* Thematic Borders */
.border-blue {
    border-bottom: 4px solid #00b0ff;
}
.border-red {
    border-bottom: 4px solid #ff5252;
}


.top-bar-stick {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    max-width: 800px;
    margin: 0 auto; 
    width: 100%;
    padding: 15px 20px;
    background-color: hsl(0, 0%, 15%);
    box-sizing: border-box;
}

.phone-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.alignment-left {
    align-items: flex-start;
}

.alignment-right {
    align-items: flex-end;
}

.top-bar-stick .top-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.color-blue { color: #00b0ff; }
.color-red { color: #ff5252; }

/* Inputs Layout */
.top-bar-stick .search-container {
    width: 100%;
    max-width: 280px;
    position: relative;
}

.top-bar-stick .search-container input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #2c313d;
    background-color: hsl(0, 0%, 15%);
    color: #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
}

.dropdown-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* ==========================================================================
   5. COMPARISON DATA TABLES (CSS GRID SETUP)
   ========================================================================== */

.smry-table {
    width: 100%;
    background-color: hsl(0, 0%, 15%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
   margin: 24px auto;
    border-radius: 8px;
    font-size: 14px;

}

.smry-table th{
    font-size: 16px;
    padding: 16px 20px;
}

.table-head{
    color: #888e9b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.left-val, .right-val {
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.4;
    padding-bottom: 14px !important; /* Spacing below the values before the next section */
    vertical-align: top;
}

/* Left phone value alignment */
.left-val {
    text-align: right;
    padding-right: 16px !important; /* Corridor gap from center line */
}

/* Right phone value alignment */
.right-val {
    text-align: left;
    padding-left: 16px !important; /* Corridor gap from center line */
}

/* Optional: Add a subtle divider line under each pair of values */
/* This separates one spec metric from the next one */
.left-val, .right-val {
    border-bottom: 1px solid #282c37;
}

/* Remove the bottom border on the very last row pair if needed */
.smry-table tr:last-child .left-val,
.smry-table tr:last-child .right-val {
    border-bottom: none;
}